5ceb65dab71ff1b9fa0db1c16017093ee47f77e9
[mono.git] / eglib / test / fake.c
1 /*
2  * Fake test allows debugging of the driver itself
3  */
4  
5 #include "test.h"
6
7 RESULT
8 test_fake()
9 {
10         return OK;
11 }
12
13 static Test fake_tests [] = {
14         {"test_fake", test_fake},
15         {NULL, NULL}
16 };
17
18 DEFINE_TEST_GROUP_INIT(fake_tests_init, fake_tests)
19