ciabatta/tests/crt.c

13 lines
237 B
C
Raw Normal View History

2023-06-24 03:42:11 +00:00
2023-07-22 14:30:04 +00:00
#include "testing.h"
2023-06-24 03:42:11 +00:00
int main(int argc, char **argv) {
2023-06-24 17:06:51 +00:00
JUNIT_START("test/junit.xml");
2023-07-22 14:30:04 +00:00
FEATURE_START("My feature");
TEST(1 == 1, "Tests work");
2023-06-24 17:06:51 +00:00
TESTS_PREPARE();
2023-06-24 03:42:11 +00:00
TESTS_PRINT_RESULT();
2023-06-24 17:06:51 +00:00
JUNIT_END();
2023-06-24 03:42:11 +00:00
return 0;
}