summaryrefslogtreecommitdiff
path: root/tests/main.c
blob: ccc7310f118fef2d81cb46207c420ab861509c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>

#include "lily-test.h"
#include "tests.h"

int main()
{
   run_test("check basic assert_msg()", basic_assertion);
   
   printf("all tests finished.\n");
   return 0;
}