summaryrefslogtreecommitdiff
path: root/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test.h')
-rw-r--r--test.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/test.h b/test.h
index 43d7512..4352c32 100644
--- a/test.h
+++ b/test.h
@@ -7,6 +7,9 @@ void testing_end(void);
void test_int_equals_imp(const char*, int, int);
#define test_int_equals(expression, expected) test_int_equals_imp(#expression, expression, expected)
+void test_long_equals_imp(const char*, long, long);
+#define test_long_equals(expression, expected) test_int_equals_imp(#expression, expression, expected)
+
void test_double_imp(const char*, double, double);
#define test_double(expression, expected) test_double_imp(#expression, expression, expected)