You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
#include "gtest/gtest.h"
|
|
#include "storm-config.h"
|
|
#include "src/parser/FormulaParser.h"
|
|
#include "src/logic/FragmentSpecification.h"
|
|
#include "src/exceptions/WrongFormatException.h"
|
|
|
|
TEST(FragmentCheckerTest, PctlTest) {
|
|
storm::parser::FormulaParser formulaParser;
|
|
|
|
std::string input = "\"label\"";
|
|
std::shared_ptr<const storm::logic::Formula> formula(nullptr);
|
|
ASSERT_NO_THROW(formula = formulaParser.parseSingleFormulaFromString(input));
|
|
|
|
}
|