diff options
author | sanine <sanine.not@pm.me> | 2022-08-28 11:25:44 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-28 11:25:44 -0500 |
commit | 0d6ece00397ebb9215ccf1af06cce22c3a94197e (patch) | |
tree | 022cc796822a998a59d8bf8896f02599ce6d3700 /src/test/mossrose-test.h | |
parent | a4dd0ad63c00f4dee3b86dfd3075d1d61b2b3180 (diff) |
begin plibsys refactor
Diffstat (limited to 'src/test/mossrose-test.h')
-rw-r--r-- | src/test/mossrose-test.h | 13 |
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 |