11 #ifndef TEST_INTERFACE_MODELAUXCONTROL_H_
12 #define TEST_INTERFACE_MODELAUXCONTROL_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include <boost/noncopyable.hpp>
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/testing/Test.h"
44 return theModelAuxControlFixture;
56 std::unique_ptr<const eckit::LocalConfiguration>
conf_;
66 std::unique_ptr<ModelAux_> bias(
new ModelAux_(Test_::resol(), Test_::config()));
68 oops::Log::test() <<
"Testing ModelAuxControl: " << *bias << std::endl;
76 typedef ModelAuxControlFixture<MODEL> Test_;
79 std::unique_ptr<ModelAux_> bias(
new ModelAux_(Test_::resol(), Test_::config()));
81 std::unique_ptr<ModelAux_> other(
new ModelAux_(*bias));
96 std::unique_ptr<ModelAux_> bias(
new ModelAux_(Test_::resol(), Test_::config()));
98 std::unique_ptr<ModelAux_> other(
new ModelAux_(Test_::resol(), *bias));
102 EXPECT(!other.get());
109 template <
typename MODEL>
115 std::string
testid()
const override {
return "test::ModelAuxControl<" + MODEL::name() +
">";}
118 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
120 ts.emplace_back(
CASE(
"interface/ModelAuxControl/testConstructor")
121 { testConstructor<MODEL>(); });
122 ts.emplace_back(
CASE(
"interface/ModelAuxControl/testCopyConstructor")
123 { testCopyConstructor<MODEL>(); });
124 ts.emplace_back(
CASE(
"interface/ModelAuxControl/testChangeRes")
125 { testChangeRes<MODEL>(); });
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
oops::ModelAuxControl< MODEL > ModelAux_
~ModelAuxControlFixture()
std::unique_ptr< Geometry_ > resol_
static ModelAuxControlFixture< MODEL > & getInstance()
static const eckit::Configuration & config()
static const Geometry_ & resol()
oops::Geometry< MODEL > Geometry_
std::unique_ptr< const eckit::LocalConfiguration > conf_
std::string testid() const override
void register_tests() const override
void clear() const override
virtual ~ModelAuxControl()
static const eckit::Configuration & config()
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
void testCopyConstructor()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.