EclipseState: rename the has*GridProperty() methods to hasDeck*GridProperty()

the intend is to better reflect that these properties where explicitly
created in the deck. The old method names can still be used, but they
will result in deprecation warnings.
This commit is contained in:
Andreas Lauser
2016-02-16 13:43:46 +01:00
parent f83236588c
commit cfd38b8a66
4 changed files with 27 additions and 22 deletions

View File

@@ -256,7 +256,7 @@ BOOST_AUTO_TEST_CASE(IntProperties) {
BOOST_CHECK_EQUAL( false , state.supportsGridProperty("NONO"));
BOOST_CHECK_EQUAL( true , state.supportsGridProperty("SATNUM"));
BOOST_CHECK_EQUAL( true , state.hasIntGridProperty("SATNUM"));
BOOST_CHECK_EQUAL( true , state.hasDeckIntGridProperty("SATNUM"));
}