blob: a4e776a352fae12d49cf3b0781cc3bb3531b9c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "minunit.h"
#include "suites.h"
int tests_run = 0;
int tests_failed = 0;
int main()
{
printf("~~~~~~~~ running tests ~~~~~~~~\n\n");
RUN_TESTS;
printf("~~~~~~~~~ tests done ~~~~~~~~~~\n\n");
mu_tests_finished();
}
|