summaryrefslogtreecommitdiff
path: root/tests/assertions.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2021-12-27 17:24:28 -0600
committersanine <sanine.not@pm.me>2021-12-27 17:24:28 -0600
commitfaafb95fdda07167770c7823f6b37d99474e1836 (patch)
tree49644011b1a42e2559b78c8d3745f4c38280437f /tests/assertions.c
parent0e16dbc5c78a2715fbbda5cae8a3b422d721b871 (diff)
add test for lily_assert_false
Diffstat (limited to 'tests/assertions.c')
-rw-r--r--tests/assertions.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/assertions.c b/tests/assertions.c
index 0a2875d..ad9fc18 100644
--- a/tests/assertions.c
+++ b/tests/assertions.c
@@ -73,3 +73,32 @@ const char *test_assert_true()
return 0;
}
+
+
+const char *test_assert_false()
+{
+ int val = setjmp(_lily_globals.env);
+ if (val != 0)
+ return "true assertion failed incorrectly!";
+
+ lily_assert_false(false);
+
+ int passed_thru = 0;
+ _lily_globals.error_msg = NULL;
+ _lily_globals.error_location = "";
+ val = setjmp(_lily_globals.env);
+
+ if (passed_thru == 0) {
+ passed_thru = 1;
+ lily_assert_false(true);
+ return "false assertion incorrectly succeeded!";
+ }
+ else {
+ if (strcmp(_lily_globals.error_msg, "true is not false") != 0)
+ return "false assertion produced incorrect error message!";
+ if (strcmp(_lily_globals.error_location, "tests/assertions.c:93") != 0)
+ return "false assertion produced incorrect error location!";
+ }
+
+ return 0;
+}