OPM-157: Added anonymous namespace for test helper methods

This commit is contained in:
chflo 2015-03-06 14:16:48 +01:00
parent 17afda792b
commit 6ce177e63f

View File

@ -47,6 +47,7 @@
#include <vector>
namespace {
void verifyRFTFile(const std::string& rft_filename) {
@ -88,7 +89,6 @@ void verifyRFTFile(const std::string& rft_filename) {
Opm::DeckConstPtr createDeck(const std::string& input_str) {
Opm::ParserPtr parser = std::make_shared<Opm::Parser>();
Opm::DeckConstPtr deck = parser->parseString(input_str);
@ -144,9 +144,7 @@ std::shared_ptr<Opm::EclipseWriter> createEclipseWriter(std::shared_ptr<const Op
return eclipseWriter;
}
}
BOOST_AUTO_TEST_CASE(test_EclipseWriterRFTHandler)
{