From c5dfc897160bc9bbc6a91c77b5d58d421fd1cfe1 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 19 Jun 2023 15:06:11 +0200 Subject: Renamed test folders to keep order --- test/basic/basic_tests.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 test/basic/basic_tests.c (limited to 'test/basic/basic_tests.c') diff --git a/test/basic/basic_tests.c b/test/basic/basic_tests.c deleted file mode 100644 index cc2a55c..0000000 --- a/test/basic/basic_tests.c +++ /dev/null @@ -1,19 +0,0 @@ -#include -#include -#include - -#include "../../src/cube.h" - -int main() { - cube_t z, s; - - s = solvedcube; - printf("Solved %s consistent\n", isconsistent(s) ? "is" : "is NOT"); - printf("Solved %s solved\n", issolved(s) ? "is" : "is NOT"); - - z = (cube_t){0}; - printf("Zero %s consistent\n", isconsistent(z) ? "is" : "is NOT"); - printf("Zero %s solved\n", issolved(z) ? "is" : "is NOT"); - - return 0; -} -- cgit v1.3