blob: 7b3dc48f923046be372bda55a9dbc110694d7adc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LILY_META_TESTS_H
#define LILY_META_TESTS_H
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
const char* basic_assertion();
#endif
|