blob: 65683ee9ffb5e7b71d5f4e1dfa3b7219f76d8bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "lily-test.h"
#include "tests.h"
int main()
{
lily_init();
run_test(test_LILY_LOCATION);
run_test(test_assert_msg);
run_test(test_assert_true);
return 0;
}
|