summaryrefslogtreecommitdiff
path: root/tests/tests.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.h')
-rw-r--r--tests/tests.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/tests.h b/tests/tests.h
index cbe0f02..7b3dc48 100644
--- a/tests/tests.h
+++ b/tests/tests.h
@@ -1,7 +1,12 @@
#ifndef LILY_META_TESTS_H
#define LILY_META_TESTS_H
-void run_test(const char *name, const char* (*fp)());
+void run_test(const char *name, const char* (*test)());
int validate_message(const char* received, const char* expected,
const char* FILE, unsigned int LINE);
+
+// test cases
+const char* basic_assertion();
+
+
#endif