blob: ef90cf8f9c3d03dd91af6ffb2941f3285913ebf7 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "catch2/catch.hpp"
TEST_CASE("Example test case", "[cooltag]") {
REQUIRE ( 1 == 1 );
}
TEST_CASE("test that doesn't run", "[cooltag][!mayfail]") {
REQUIRE ( 0 == 1 );
}
|