Browse Source

fix testfile

tempestpy_adaptions
Sebastian Junges 4 years ago
parent
commit
f43cb6a798
  1. 4
      src/test/storm/parser/PrismParserTest.cpp

4
src/test/storm/parser/PrismParserTest.cpp

@ -174,8 +174,10 @@ TEST(PrismParser, NAryPredicates) {
label "test" = atMostOneOf(s=0, s=3, s=4);
label "test2" = exactlyOneOf(s=0, i, !i & s=3);
)";
storm::prism::Program result;
EXPECT_NO_THROW(result = storm::parser::PrismParser::parseFromString(testInput2, "testfile"));
EXPECT_NO_THROW(result = storm::parser::PrismParser::parseFromString(testInput, "testfile"));
}
TEST(PrismParser, IllegalInputTest) {
Loading…
Cancel
Save