OOPS
test/interface/Geometry.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef TEST_INTERFACE_GEOMETRY_H_
12 #define TEST_INTERFACE_GEOMETRY_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
19 
20 #include "eckit/config/Configuration.h"
21 #include "eckit/testing/Test.h"
22 #include "oops/base/Geometry.h"
23 #include "oops/mpi/mpi.h"
24 #include "oops/runs/Test.h"
25 #include "oops/util/Logger.h"
27 #include "test/TestEnvironment.h"
28 
29 namespace test {
30 
31 // -----------------------------------------------------------------------------
32 /// \brief Tests constructor and print method
33 template <typename MODEL> void testConstructor() {
34  typedef oops::Geometry<MODEL> Geometry_;
35 
36  std::unique_ptr<Geometry_> geom(new Geometry_(GeometryFixture<MODEL>::getParameters(),
38  EXPECT(geom.get());
39  oops::Log::test() << "Testing geometry: " << *geom << std::endl;
40  geom.reset();
41  EXPECT(!geom.get());
42 }
43 
44 // -----------------------------------------------------------------------------
45 template <typename MODEL> class Geometry : public oops::Test {
46  public:
47  Geometry() {}
48  virtual ~Geometry() {}
49  private:
50  std::string testid() const override {return "test::Geometry<" + MODEL::name() + ">";}
51 
52  void register_tests() const override {
53  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
54 
55  ts.emplace_back(CASE("interface/Geometry/testConstructor")
56  { testConstructor<MODEL>(); });
57  }
58 
59  void clear() const override {}
60 };
61 
62 // =============================================================================
63 
64 } // namespace test
65 
66 #endif // TEST_INTERFACE_GEOMETRY_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
static const Parameters_ & getParameters()
std::string testid() const override
void register_tests() const override
void clear() const override
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
Definition: oops/mpi/mpi.cc:90
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.