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.

20 lines
830 B

  1. #include "gtest/gtest.h"
  2. #include "storm-config.h"
  3. #include "src/parser/JaniParser.h"
  4. #include "src/storage/jani/Model.h"
  5. #include "src/storage/jani/Property.h"
  6. TEST(JaniParser, DieTest) {
  7. std::string testFileInput = STORM_CPP_TESTS_BASE_PATH"/../examples/exported-jani-models/dice.jani";
  8. storm::jani::Model model = storm::parser::JaniParser::parse(testFileInput).first;
  9. }
  10. TEST(JaniParser, BrpTest) {
  11. std::string testFileInput = STORM_CPP_TESTS_BASE_PATH"/../examples/exported-jani-models/brp.jani";
  12. storm::jani::Model model = storm::parser::JaniParser::parse(testFileInput).first;
  13. }
  14. TEST(JaniParser, ConsensusTest) {
  15. std::string testFileInput = STORM_CPP_TESTS_BASE_PATH"/../examples/exported-jani-models/coin2.jani";
  16. storm::jani::Model model = storm::parser::JaniParser::parse(testFileInput).first;
  17. }