Criterion/samples/simple.c

10 lines
119 B
C
Raw Permalink Normal View History

#include <criterion/criterion.h>
2015-01-31 13:45:12 +01:00
2015-02-02 12:43:36 +01:00
Test(misc, failing) {
cr_assert(0);
2015-01-31 13:45:12 +01:00
}
2015-02-06 13:10:08 +01:00
Test(misc, passing) {
cr_assert(1);
}