Skip to content

Commit

Permalink
fix: replace 'X\[\!\]' with 'strongX' in Catch test names
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofavorito committed Jan 22, 2024
1 parent 25453d2 commit eb14f96
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions test/test_one_step_realizability_check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ TEST_CASE("One-step realizability check of a", "[one-step-realizability-check]")

}

TEST_CASE("One-step realizability check of X\\[\\!\\] a", "[one-step-realizability-check]") {
TEST_CASE("One-step realizability check of strongX a", "[one-step-realizability-check]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down Expand Up @@ -220,7 +220,7 @@ TEST_CASE("One-step realizability check of random formula 1", "[one-step-unreali
}
}

TEST_CASE("One-step realizability check of a U X\\[\\!\\]b", "[one-step-unrealizability-check]") {
TEST_CASE("One-step realizability check of a U strongXb", "[one-step-unrealizability-check]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down
4 changes: 2 additions & 2 deletions test/test_one_step_unrealizability_check.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ TEST_CASE("One-step unrealizability check of a", "[one-step-unrealizability-chec

}

TEST_CASE("One-step unrealizability check of X\\[\\!\\] a", "[one-step-unrealizability-check]") {
TEST_CASE("One-step unrealizability check of strongX a", "[one-step-unrealizability-check]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down Expand Up @@ -234,7 +234,7 @@ TEST_CASE("One-step unrealizability check of random formula 1", "[one-step-unrea
}
}

TEST_CASE("One-step unrealizability check of a U X\\[\\!\\]b", "[one-step-unrealizability-check]") {
TEST_CASE("One-step unrealizability check of a U strongXb", "[one-step-unrealizability-check]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down
4 changes: 2 additions & 2 deletions test/test_preprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ TEST_CASE("Preprocessing of a", "[preprocessing]") {

}

TEST_CASE("Preprocessing of X\\[\\!\\] a", "[preprocessing]") {
TEST_CASE("Preprocessing of strongX a", "[preprocessing]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down Expand Up @@ -232,7 +232,7 @@ TEST_CASE("Preprocessing of random formula 1", "[one-step-unrealizability-check]
}
}

TEST_CASE("Preprocessing of a U X\\[\\!\\]b", "[one-step-unrealizability-check]") {
TEST_CASE("Preprocessing of a U strongXb", "[one-step-unrealizability-check]") {
auto driver = std::make_shared<whitemech::lydia::parsers::ltlf::LTLfDriver>();
auto var_mgr = std::make_shared<Syft::VarMgr>();

Expand Down
2 changes: 1 addition & 1 deletion test/test_synthesis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ TEST_CASE("Synthesis of a or b", "[synthesis]") {
}
}

TEST_CASE("Synthesis of X\\[\\!\\] a", "[synthesis]") {
TEST_CASE("Synthesis of strongX a", "[synthesis]") {

std::string formula = "X[!] a";

Expand Down

0 comments on commit eb14f96

Please sign in to comment.