9 lines
195 B
C++
9 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) {
|
||
|
}
|