summaryrefslogtreecommitdiff
path: root/src/test/test.h
blob: cb11152370f644c63ab82c545ce5e95728d19ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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) \
	X(xml_suite) \


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

#endif