blob: 69bf65eda6b096cf963de274296a32e31eb6d61c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "lily-test.h"
#include "tests.h"
int main()
{
run_test("check lily_assert_msg()", basic_assertion);
run_test("check lily_assert_equal()", assert_equal);
printf("all tests finished.\n");
return 0;
}
|