1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-11 13:51:02 -05:00
picom/examples/trivial_tests/test_test1.c

16 lines
210 B
C
Raw Normal View History

2019-03-12 19:27:00 -04:00
#include <stdio.h>
2019-03-13 17:05:12 -04:00
#include <stdbool.h>
2019-03-12 19:27:00 -04:00
#include "test.h"
2019-03-13 17:18:08 -04:00
int main(int argc, char *const *argv) {
printf("Hello World!\n");
2019-03-12 19:27:00 -04:00
}
TEST_CASE(test1) {
2019-03-13 17:05:12 -04:00
TEST_EQUAL(1, 0);
}
TEST_CASE(test2) {
TEST_TRUE(false);
2019-03-12 19:27:00 -04:00
}