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

#include "lily-test.h"


void suite_transform();


#define RUN_TESTS() \
	do { \
		lily_run_suite(suite_transform); \
	} while (0)

#endif