diff options
author | Christian C <cc@localhost> | 2025-03-07 23:05:12 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-07 23:05:12 -0800 |
commit | afad16ce636dd54fa1fdedd100eb93f1d7b508d6 (patch) | |
tree | 075739eb47cf62fd59ea92e988d0d7d033eef771 /src/test | |
parent | fb290d22289f9c29eef504a538f7a293844a624d (diff) |
Test suite start
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/test.c b/src/test/test.c new file mode 100644 index 0000000..95b4154 --- /dev/null +++ b/src/test/test.c @@ -0,0 +1,13 @@ +#include <test/lib/color.h> + +int main() +{ + bool_t all_success = TRUE; + // lib/color.c Test + all_success &= TEST_lib_color(); + + if (all_success == TRUE) { + return 0; + } + return 1; +} |