patrick
/
plasp
Archived
1
0
Fork 0

Renamed test sections for clarity.

This commit is contained in:
Patrick Lühne 2017-06-18 22:59:16 +02:00
parent bbf2a7d02d
commit 1379c24362
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ const auto pddlInstanceBasePath = fs::path("data") / "pddl-instances";
////////////////////////////////////////////////////////////////////////////////////////////////////
TEST_CASE("[PDDL parser acceptance] All official PDDL domains are parsed without errors", "[PDDL parser acceptance]")
TEST_CASE("[PDDL acceptance] All official PDDL domains are parsed without errors", "[PDDL acceptance]")
{
for (const auto &competitionDirectory : fs::directory_iterator(pddlInstanceBasePath))
{
@ -43,7 +43,7 @@ TEST_CASE("[PDDL parser acceptance] All official PDDL domains are parsed without
////////////////////////////////////////////////////////////////////////////////////////////////////
TEST_CASE("[PDDL parser acceptance] The first instance for all official PDDL domains is parsed without errors", "[PDDL parser acceptance]")
TEST_CASE("[PDDL acceptance] The first instance for all official PDDL domains is parsed without errors", "[PDDL acceptance]")
{
for (const auto &competitionDirectory : fs::directory_iterator(pddlInstanceBasePath))
{

View File

@ -12,7 +12,7 @@ const auto pddlInstanceBasePath = fs::path("data") / "pddl-instances";
////////////////////////////////////////////////////////////////////////////////////////////////////
TEST_CASE("[PDDL parser] The official PDDL instances are parsed correctly", "[PDDL parser]")
TEST_CASE("[PDDL instances] The official PDDL instances are parsed correctly", "[PDDL instances]")
{
pddl::Tokenizer tokenizer;
pddl::Context context(std::move(tokenizer), ignoreWarnings);