From 342f577c24439977985e2de89fe512e504489735 Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 27 Dec 2021 17:28:29 -0600 Subject: add test for assert_not_null --- tests/assertions.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'tests/assertions.c') diff --git a/tests/assertions.c b/tests/assertions.c index ad9fc18..d1ba141 100644 --- a/tests/assertions.c +++ b/tests/assertions.c @@ -102,3 +102,36 @@ const char *test_assert_false() return 0; } + + +const char *test_assert_not_null() +{ + int a = 5; + + int val = setjmp(_lily_globals.env); + if (val != 0) + return "true assertion failed incorrectly!"; + + lily_assert_not_null(&a); + + int passed_thru = 0; + _lily_globals.error_msg = NULL; + _lily_globals.error_location = ""; + val = setjmp(_lily_globals.env); + + int *ptr = NULL; + + if (passed_thru == 0) { + passed_thru = 1; + lily_assert_not_null(ptr); + return "false assertion incorrectly succeeded!"; + } + else { + if (strcmp(_lily_globals.error_msg, "ptr is NULL") != 0) + return "false assertion produced incorrect error message!"; + if (strcmp(_lily_globals.error_location, "tests/assertions.c:126") != 0) + return "false assertion produced incorrect error location!"; + } + + return 0; +} -- cgit v1.2.1