Can I run test cases based on "not matching" a particular tag in Catch2?
TEST_CASE("Check the data validity","[Working]"){
REQUIRE(true);
}
TEST_CASE("Check the input","[InProgress]"){
REQUIRE(true);
}
TEST_CASE("Validate the response","[NotWorking]"){
REQUIRE(false);
}
I want to invoke testcases that are not falling in [NotWorking]
tag until I finish implementing that functionality.