blob: 34de41ed363201e34ae44ece34bd301168094e2f (
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][ignore]") {
REQUIRE ( 0 == 1 );
}
|