blob: 201a51b2564dc07a98b7526fe27682f16d16bf2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|