aboutsummaryrefslogtreecommitdiff
path: root/examples/embedded_ui/test_suite_template.c
blob: 00df5bb2e28c2c9219b3d54e289fed32ccf81191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "../../test/c_test_framework.h"

/* Initialializers called for every test */
void setup()
{

}

/* Tests go here */
TEST_F(GreeterTests, hello_world)
{
	assert(1 == 0);
}



int main()
{
	setbuf(stderr, NULL);
	fprintf(stdout, "-------------\n");
	fprintf(stdout, "Running Tests\n");
	fprintf(stdout, "-------------\n\n");
    fflush(0);

	/* Run tests */
    RUN_TEST(GreeterTests, hello_world);


    printf("\n-------------\n");
    printf("Complete\n");
	printf("-------------\n\n");

	return 0;
}