Criterion/samples/description.c

9 lines
195 B
C
Raw Permalink Normal View History

#include <criterion/criterion.h>
Test(misc, failing, .description = "Just a failing test") {
cr_assert(0);
}
Test(misc, skipped, .description = "This one is skipped", .disabled = true) {
}