Extracted Schedule and SummaryConfig,

This commit is contained in:
Joakim Hove
2017-09-27 16:34:38 +02:00
parent 77fcc865de
commit 612e255d4f
21 changed files with 124 additions and 121 deletions

View File

@@ -73,7 +73,7 @@ BOOST_AUTO_TEST_CASE(TuningTest) {
EclipseGrid grid(10,10,10);
TableManager table ( deck );
Eclipse3DProperties eclipseProperties ( deck , table, grid);
Schedule schedule( ParseContext() , grid , eclipseProperties, deck, Phases(true, true, true) );
Schedule schedule( deck, grid , eclipseProperties, Phases(true, true, true) , ParseContext());
auto tuning = schedule.getTuning();
@@ -326,7 +326,7 @@ BOOST_AUTO_TEST_CASE(TuningInitTest) {
EclipseGrid grid(10,10,10);
TableManager table ( deck );
Eclipse3DProperties eclipseProperties ( deck , table, grid);
Schedule schedule(ParseContext() , grid , eclipseProperties, deck, Phases(true, true, true));
Schedule schedule(deck , grid , eclipseProperties, Phases(true, true, true), ParseContext());
auto tuning = schedule.getTuning();
@@ -356,7 +356,7 @@ BOOST_AUTO_TEST_CASE(TuningResetTest) {
EclipseGrid grid(10,10,10);
TableManager table ( deck );
Eclipse3DProperties eclipseProperties ( deck , table, grid);
Schedule schedule(ParseContext() , grid , eclipseProperties, deck, Phases(true, true, true));
Schedule schedule(deck, grid , eclipseProperties, Phases(true, true, true), ParseContext());
auto tuning = schedule.getTuning();
@@ -374,5 +374,4 @@ BOOST_AUTO_TEST_CASE(TuningResetTest) {
TSINIT_default = tuning.getTSINIT(timestep);
BOOST_CHECK_CLOSE(TSINIT_default, 666.00, diff);
}
}