Default: Added dataset from opm-core with test

This commit is contained in:
Joakim Hove
2014-08-25 13:57:51 +02:00
parent 544b6db1c0
commit fedc3387fd
2 changed files with 80 additions and 0 deletions

View File

@@ -558,3 +558,14 @@ COMPDAT \n\
}
/**
This is a deck used in the opm-core wellsManager testing; just be
certain we can parse it.
*/
BOOST_AUTO_TEST_CASE(OpmCode) {
ParserPtr parser(new Parser());
boost::filesystem::path scheduleFile("testdata/integration_tests/SCHEDULE/wells_group.data");
DeckPtr deck = parser->parseFile(scheduleFile.string());
ScheduleConstPtr sched(new Schedule(deck));
}