aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/test.c13
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;
+}