Remove stale boost includes
This commit is contained in:
parent
91841a99e1
commit
39eb327551
@ -19,12 +19,10 @@
|
||||
|
||||
#include <stdexcept>
|
||||
#include <iostream>
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
#define BOOST_TEST_MODULE MessageLimitTests
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||
|
||||
#include <opm/parser/eclipse/EclipseState/Grid/EclipseGrid.hpp>
|
||||
#include <opm/parser/eclipse/EclipseState/Grid/FieldPropsManager.hpp>
|
||||
|
@ -19,11 +19,9 @@
|
||||
|
||||
#include <stdexcept>
|
||||
#include <iostream>
|
||||
#include <boost/filesystem.hpp>
|
||||
|
||||
#define BOOST_TEST_MODULE WellTest
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||
|
||||
#include <opm/parser/eclipse/Units/Units.hpp>
|
||||
#include <opm/parser/eclipse/Units/UnitSystem.hpp>
|
||||
|
@ -18,7 +18,6 @@
|
||||
*/
|
||||
|
||||
#define BOOST_TEST_MODULE ParserKeywordsIntegrationTests
|
||||
#include <boost/algorithm/string/join.hpp>
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
|
||||
@ -1081,9 +1080,8 @@ BOOST_AUTO_TEST_CASE( TITLE ) {
|
||||
const auto& item = record.getItem(0);
|
||||
|
||||
std::vector<std::string> itemValue = item.getData< std::string >();
|
||||
std::string itemValueString = boost::algorithm::join(itemValue, " ");
|
||||
|
||||
BOOST_CHECK_EQUAL(0, itemValueString.compare("This is the title of the model."));
|
||||
std::vector<std::string> expected = {"This", "is", "the", "title", "of", "the", "model."};
|
||||
BOOST_CHECK(itemValue == expected);
|
||||
BOOST_CHECK_EQUAL(true, deck.hasKeyword("START"));
|
||||
}
|
||||
|
||||
|
@ -22,7 +22,6 @@
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/test_tools.hpp>
|
||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||
|
||||
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
||||
#include <opm/parser/eclipse/Parser/Parser.hpp>
|
||||
|
Loading…
Reference in New Issue
Block a user