summaryrefslogtreecommitdiff
path: root/src/test/test.h
blob: 910fe65030ee2f86ff14d63429bd54f1f75bb9a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef KALMIA_TEST_H
#define KALMIA_TEST_H

#define LILY_TEST_H_LOCATION <test/lily-test.h>
#include "lily-test.h"


#define TESTS \
	X(util_suite) \
	X(geometry_suite) \


#define X(test) extern void (*test)();
TESTS
#undef X

#endif