Added axiom rule support for SAS translator output.
This commit is contained in:
@@ -6,11 +6,12 @@
|
||||
|
||||
TEST(UtilsTests, EscapeASP)
|
||||
{
|
||||
const std::string predicate = "action(stack_on(block-1, block-2))";
|
||||
const std::string predicate = "action(stack_on(block-1, block-2, value@3, value@4))";
|
||||
|
||||
const auto escaped = plasp::utils::escapeASP(predicate);
|
||||
const auto unescaped = plasp::utils::unescapeASP(escaped);
|
||||
|
||||
ASSERT_EQ(escaped.find("-"), std::string::npos);
|
||||
ASSERT_EQ(escaped.find("@"), std::string::npos);
|
||||
ASSERT_EQ(predicate, unescaped);
|
||||
}
|
||||
|
Reference in New Issue
Block a user