From 74ea6dc86646cee9915292d73d8c7afef01ef3e0 Mon Sep 17 00:00:00 2001 From: Sopár Adrián Date: Thu, 20 Jun 2024 09:28:14 +0200 Subject: First commit. This is mostly the state of the project as I left it around the end of 2019. --- tests/test.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/test.c (limited to 'tests') 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 +#include + +#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 -- cgit v1.2.3