Added coverage case of a skipped test with description

This commit is contained in:
Snaipe 2015-04-12 16:56:06 +02:00
parent 795f2d28da
commit f24033e969

View file

@ -3,3 +3,6 @@
Test(misc, failing, .description = "Just a failing test") {
assert(0);
}
Test(misc, skipped, .description = "This one is skipped", .disabled = true) {
}