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.
36 lines
1.4 KiB
36 lines
1.4 KiB
#include "test/storm_gtest.h"
|
|
#include "storm-config.h"
|
|
|
|
#include "storm-dft/api/storm-dft.h"
|
|
|
|
namespace {
|
|
|
|
TEST(DftParserTest, LoadFromGalileoFile) {
|
|
std::string file = STORM_TEST_RESOURCES_DIR "/dft/and.dft";
|
|
std::shared_ptr<storm::storage::DFT<double>> dft = storm::api::loadDFTGalileoFile<double>(file);
|
|
EXPECT_EQ(3ul, dft->nrElements());
|
|
EXPECT_EQ(2ul, dft->nrBasicElements());
|
|
EXPECT_TRUE(storm::api::isWellFormed(*dft).first);
|
|
}
|
|
|
|
TEST(DftParserTest, LoadFromJsonFile) {
|
|
std::string file = STORM_TEST_RESOURCES_DIR "/dft/and.json";
|
|
std::shared_ptr<storm::storage::DFT<double>> dft = storm::api::loadDFTJsonFile<double>(file);
|
|
EXPECT_EQ(3ul, dft->nrElements());
|
|
EXPECT_EQ(2ul, dft->nrBasicElements());
|
|
EXPECT_TRUE(storm::api::isWellFormed(*dft).first);
|
|
}
|
|
|
|
TEST(DftParserTest, CatchCycles) {
|
|
std::string file = STORM_TEST_RESOURCES_DIR "/dft/cyclic.dft";
|
|
STORM_SILENT_EXPECT_THROW(storm::api::loadDFTGalileoFile<double>(file), storm::exceptions::WrongFormatException);
|
|
}
|
|
|
|
TEST(DftParserTest, LoadSeqChildren) {
|
|
std::string file = STORM_TEST_RESOURCES_DIR "/dft/seqChild.dft";
|
|
std::shared_ptr<storm::storage::DFT<double>> dft = storm::api::loadDFTGalileoFile<double>(file);
|
|
EXPECT_EQ(4ul, dft->nrElements());
|
|
EXPECT_EQ(2ul, dft->nrBasicElements());
|
|
EXPECT_TRUE(storm::api::isWellFormed(*dft).first);
|
|
}
|
|
}
|