summaryrefslogtreecommitdiff
path: root/tests/tests.h
blob: 4a02f66f2d2f4ab5fc678f35464585d2a3423411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef LILY_META_TESTS_H
#define LILY_META_TESTS_H

#define run_test(test) _run_test(#test, test)
void _run_test(const char *name, const char* (*test)());
int validate_message(const char* received, const char* expected,
		     const char* FILE, unsigned int LINE);

// test cases
#define TESTS \
	X(test_LILY_LOCATION) \
	X(test_LILY_COUNTER) \
	X(test_LILY_COUNTER_DECREMENT) \
	X(test_auto_registration) \
	X(test_INFO) \
	X(test_CHECK) \
	X(test_CHECK_EQ) \
	X(test_CHECK_EQF) \
	X(test_CHECK_EQS) \
	X(test_REQUIRE) \
	X(test_REQUIRE_EQ) \
	X(test_REQUIRE_EQF) \
	X(test_REQUIRE_EQS) \

#define X(test) const char * test();
TESTS
#undef X

#endif