2023-07-06 06:04:58 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2023 Equinor
|
|
|
|
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 CarfinManagerTests
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
#include <opm/input/eclipse/EclipseState/Grid/LgrCollection.hpp>
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(CreateLgrCollection) {
|
|
|
|
Opm::LgrCollection lgrs;
|
|
|
|
BOOST_CHECK_EQUAL( lgrs.size() , 0U );
|
|
|
|
BOOST_CHECK(! lgrs.hasLgr("NO-NotThisOne"));
|
|
|
|
BOOST_CHECK_THROW( lgrs.getLgr("NO") , std::invalid_argument );
|
|
|
|
}
|
2023-07-11 04:27:45 -05:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(AddLgrsToCollection) {
|
|
|
|
Opm::LgrCollection lgrs;
|
|
|
|
|
|
|
|
lgrs.addLgr("LGR1");
|
|
|
|
BOOST_CHECK_EQUAL( lgrs.size() , 1U );
|
|
|
|
BOOST_CHECK(lgrs.hasLGR("LGR1"));
|
|
|
|
|
|
|
|
const auto& lgr1 = lgrs.getLgr("LGR1");
|
|
|
|
const auto& lgr12 = lgrs.getLgr(0);
|
|
|
|
BOOST_CHECK_EQUAL(lgr1.getName(), lgr12.getName());
|
|
|
|
BOOST_CHECK_EQUAL(lgr1.getName(), "LGR1");
|
|
|
|
|
|
|
|
lgrs.addLgr("LGR2");
|
|
|
|
const auto& lgr2 = lgrs.getFault("LGR2");
|
|
|
|
BOOST_CHECK_EQUAL( lgrs.size() , 2U );
|
|
|
|
BOOST_CHECK(lgrs.hasLgr("LGR2"));
|
|
|
|
BOOST_CHECK_EQUAL( lgr2.getName() , lgrs.getLgr(1).getName());
|
|
|
|
}
|