mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
cfdbd11328
git-subtree-dir: subprojects/test.h git-subtree-mainline:061f9aea9d
git-subtree-split:a84877df68
15 lines
210 B
C
15 lines
210 B
C
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "test.h"
|
|
|
|
int main(int argc, char *const *argv) {
|
|
printf("Hello World!\n");
|
|
}
|
|
|
|
TEST_CASE(test1) {
|
|
TEST_EQUAL(1, 0);
|
|
}
|
|
|
|
TEST_CASE(test2) {
|
|
TEST_TRUE(false);
|
|
}
|