blob: 481260e0ba8f2b09ecd8ee6d3942fc02516cf872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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) \
#define X(test) const char * test();
TESTS
#undef X
#endif
|