summaryrefslogtreecommitdiff
path: root/src/test/mossrose-test.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-08-28 11:25:44 -0500
committersanine <sanine.not@pm.me>2022-08-28 11:25:44 -0500
commit0d6ece00397ebb9215ccf1af06cce22c3a94197e (patch)
tree022cc796822a998a59d8bf8896f02599ce6d3700 /src/test/mossrose-test.h
parenta4dd0ad63c00f4dee3b86dfd3075d1d61b2b3180 (diff)
begin plibsys refactor
Diffstat (limited to 'src/test/mossrose-test.h')
-rw-r--r--src/test/mossrose-test.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/mossrose-test.h b/src/test/mossrose-test.h
new file mode 100644
index 0000000..201a51b
--- /dev/null
+++ b/src/test/mossrose-test.h
@@ -0,0 +1,13 @@
+#ifndef MOSSROSE_TEST_H
+#define MOSSROSE_TEST_H
+
+#include "lily-test.h"
+
+void suite_channel();
+void suite_sound();
+
+#define RUN_TESTS() \
+ lily_run_suite(suite_channel); \
+ lily_run_suite(suite_sound); \
+
+#endif