11 #ifndef TEST_INTERFACE_GEOMETRYITERATOR_H_
12 #define TEST_INTERFACE_GEOMETRYITERATOR_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include "eckit/config/Configuration.h"
21 #include "eckit/testing/Test.h"
52 GeometryIterator_ iter1 = geom.begin();
53 EXPECT(iter1 == geom.begin());
55 GeometryIterator_ iter2 = geom.end();
56 EXPECT(iter2 == geom.end());
59 EXPECT(iter1 != iter2);
62 oops::Log::test() <<
"Geometry::begin " << iter1 << std::endl;
85 Increment_ dx1(Test_::resol(), Test_::ctlvars(), Test_::time());
87 EXPECT(dx1.norm() != 0.0);
88 oops::Log::test() <<
"Increment dx1 (random): " << dx1 << std::endl;
90 Increment_ dx2(Test_::resol(), Test_::ctlvars(), Test_::time());
92 EXPECT(dx2.norm() == 0.0);
93 oops::Log::test() <<
"Increment dx2 (zero): " << dx2 << std::endl;
95 for (GeometryIterator_ i = geom.begin(); i != geom.end(); ++i) {
98 oops::Log::debug() << *i << gp << std::endl;
102 oops::Log::test() <<
"Increment dx2 after dx2=dx1 (at every point): " << dx2 << std::endl;
103 EXPECT(dx2.norm() != 0.0);
106 EXPECT(dx2.norm() == 0.0);
117 std::string
testid()
const override {
return "test::GeometryIterator<" + MODEL::name() +
">";}
120 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
122 ts.emplace_back(
CASE(
"interface/GeometryIterator/testBasic")
123 { testBasic<MODEL>(); });
124 ts.emplace_back(
CASE(
"interface/Increment/testGetSetLocal")
125 { testGetSetLocal<MODEL>(); });
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Fixture used by tests of the Geometry and GeometryIterator interfaces.
void clear() const override
void register_tests() const override
virtual ~GeometryIterator()
std::string testid() const override
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
void testBasic()
Tests of Geometry::begin/end; GeometryIterator ctor and ==/!= operators.
void testGetSetLocal()
Test of GeometryIterator::operator++, Increment::getLocal and Increment::setLocal.
CASE("test_linearmodelparameterswrapper_valid_name")