blob: e1d7e04f52a3bac847d43c5c80c7978748fb9a86 (
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();
const char* assert_equal();
#endif
|