Criterion/samples/description.cc
2015-09-07 02:00:03 +02:00

8 lines
195 B
C++

#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) {
}