aboutsummaryrefslogtreecommitdiff
path: root/tests/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.c')
-rw-r--r--tests/test.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/test.c b/tests/test.c
new file mode 100644
index 0000000..f72fd23
--- /dev/null
+++ b/tests/test.c
@@ -0,0 +1,17 @@
+#include <criterion/criterion.h>
+#include <criterion/theories.h>
+
+#define A \
+ { \
+ DataPoints(int, 0, 1, 2) \
+ }
+
+TheoryDataPoints(maze, generate) = A;
+TheoryDataPoints(maze, solve) = A;
+
+Theory((int seed), maze, generate)
+{
+ srand(seed);
+}
+
+Theory((int seed), maze, solve) {} \ No newline at end of file