summaryrefslogtreecommitdiff
path: root/test/minunit.h
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-02-19 10:57:47 -0500
committerjakob <jakob@memeware.net>2017-02-19 10:57:47 -0500
commit32fb7b11d83138cc288d62c1f1674d95cc94e8de (patch)
tree290c5a27b58e24bb82bd46decba0aa5e1282e003 /test/minunit.h
parent1fc6cc323dbaa5387d84630615c0d4cab0c1c5ba (diff)
Implemented table linked list, decompression and encryption. Tests have been improved.
Diffstat (limited to 'test/minunit.h')
-rw-r--r--test/minunit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/minunit.h b/test/minunit.h
index 7422998..80ef040 100644
--- a/test/minunit.h
+++ b/test/minunit.h
@@ -1,3 +1,4 @@
+#pragma once
#define mu_assert(message, test) do { if (!(test)) return message; } while (0)
#define mu_run_test(test) do { char *message = test(); tests_run++; if (message) return message; } while (0)
extern int tests_run;