1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/*
Copyright (C) 2013 by Andreas Lauser
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#define BOOST_TEST_MODULE TableContainerTests
#include <boost/test/unit_test.hpp>
#include <opm/input/eclipse/Parser/Parser.hpp>
#include <opm/input/eclipse/Deck/Deck.hpp>
#include <opm/input/eclipse/Deck/DeckKeyword.hpp>
#include <opm/input/eclipse/Deck/DeckRecord.hpp>
#include <opm/input/eclipse/EclipseState/Tables/TableContainer.hpp>
#include <opm/input/eclipse/EclipseState/Tables/SwofTable.hpp>
#include <string>
#include <memory>
namespace {
Opm::Deck createSWOFDeck()
{
return Opm::Parser{}.parseString(R"(RUNSPEC
OIL
WATER
TABDIMS
2 /
PROPS
SWOF
1 2 3 4
5 6 7 8 /
9 10 11 12 /
END
)");
}
}
BOOST_AUTO_TEST_CASE( CreateContainer ) {
auto deck = createSWOFDeck();
Opm::TableContainer container(10);
BOOST_CHECK( container.empty() );
BOOST_CHECK_EQUAL( 0U , container.size() );
BOOST_CHECK_EQUAL( false , container.hasTable( 1 ));
std::shared_ptr<Opm::SimpleTable> table = std::make_shared<Opm::SwofTable>( deck["SWOF"].back().getRecord(0).getItem(0), false, 0 );
BOOST_CHECK_THROW( container.addTable( 10 , table ), std::invalid_argument );
container.addTable( 6 , table );
BOOST_CHECK_EQUAL( 1U , container.size() );
BOOST_CHECK_EQUAL( table.get() , &(container[6]));
BOOST_CHECK_EQUAL( table.get() , &(container[9]));
BOOST_CHECK_THROW( container[5] , std::invalid_argument );
BOOST_CHECK_THROW( container[10] , std::invalid_argument );
}
|