2015-03-24 15:59:02 +01:00
|
|
|
#include <criterion/criterion.h>
|
|
|
|
|
|
|
|
Test(misc, failing, .description = "Just a failing test") {
|
2015-04-25 16:48:34 +02:00
|
|
|
cr_assert(0);
|
2015-03-24 15:59:02 +01:00
|
|
|
}
|
2015-04-12 16:56:06 +02:00
|
|
|
|
|
|
|
Test(misc, skipped, .description = "This one is skipped", .disabled = true) {
|
|
|
|
}
|