Criterion/samples/description.cc

9 lines
195 B
C++
Raw Permalink Normal View History

2015-09-07 02:00:03 +02:00
#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) {
}