aboutsummaryrefslogtreecommitdiff
path: root/src/unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittest.h')
-rw-r--r--src/unittest.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/unittest.h b/src/unittest.h
index d2fd4ad..e32ee10 100644
--- a/src/unittest.h
+++ b/src/unittest.h
@@ -1,9 +1,10 @@
#include <stdio.h>
#include <stdbool.h>
-#define RED "\x1B[31m"
-#define GRN "\x1B[32m"
-#define RESET "\x1B[0m"
+#define RED "\x1B[31m"
+#define GRN "\x1B[32m"
+#define CYAN "\x1B[36m"
+#define RESET "\x1B[0m"
#define PASS "PASS!"
#define FAIL "FAIL!"
@@ -15,4 +16,6 @@ bool assert(bool expression, const char* message);
void unit_test(bool expression, const char* subject);
+void start_test_section(const char* name);
+
bool report();