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