2018-04-17 03:01:02 -05:00
|
|
|
/*
|
|
|
|
Copyright 2018 Statoil IT
|
|
|
|
|
|
|
|
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 LogiHEAD_Vector
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
#include <opm/output/eclipse/LogiHEAD.hpp>
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(Member_Functions)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(Radial_Settings_and_Init)
|
|
|
|
{
|
|
|
|
const auto e300_radial = false;
|
|
|
|
const auto e100_radial = true;
|
|
|
|
|
|
|
|
const auto lh = Opm::RestartIO::LogiHEAD{}
|
|
|
|
.variousParam(e300_radial, e100_radial, 4);
|
|
|
|
|
|
|
|
const auto& v = lh.data();
|
|
|
|
|
|
|
|
BOOST_CHECK_EQUAL(v[ 0], true); //
|
|
|
|
BOOST_CHECK_EQUAL(v[ 1], true); //
|
|
|
|
BOOST_CHECK_EQUAL(v[ 3], false); // E300 Radial
|
|
|
|
BOOST_CHECK_EQUAL(v[ 4], true); // E100 Radial
|
2018-09-10 08:05:33 -05:00
|
|
|
BOOST_CHECK_EQUAL(v[ 75], true); // MS Well Simulation Case
|
2018-04-17 03:01:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|