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.
24 lines
581 B
24 lines
581 B
/*
|
|
* parse_dtmc_test.cpp
|
|
*
|
|
* Created on: 03.12.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "mrmc-config.h"
|
|
#include "src/utility/ioUtility.h"
|
|
|
|
TEST(ParseDtmcTest, parseAndOutput) {
|
|
mrmc::models::Dtmc<double>* myDtmc;
|
|
ASSERT_NO_THROW(myDtmc = mrmc::utility::parseDTMC(
|
|
MRMC_CPP_TESTS_BASE_PATH "/parser/tra_files/pctl_general_input_01.tra",
|
|
MRMC_CPP_TESTS_BASE_PATH "/parser/lab_files/pctl_general_input_01.lab"));
|
|
|
|
ASSERT_NO_THROW(mrmc::utility::dtmcToDot(myDtmc, MRMC_CPP_TESTS_BASE_PATH "/parser/output.dot"));
|
|
|
|
delete myDtmc;
|
|
}
|
|
|
|
|