11 #ifndef TEST_INTERFACE_OBSAUXCONTROL_H_
12 #define TEST_INTERFACE_OBSAUXCONTROL_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include <boost/noncopyable.hpp>
22 #include "eckit/config/Configuration.h"
23 #include "eckit/testing/Test.h"
34 typedef ObsTestsFixture<OBS> Test_;
37 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
38 eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration(
"obs bias");
39 typename ObsAux_::Parameters_ biasparams;
40 biasparams.validateAndDeserialize(biasconf);
41 std::unique_ptr<ObsAux_> bias(
new ObsAux_(Test_::obspace()[jj], biasparams));
43 oops::Log::test() <<
"Testing ObsAuxControl: " << *bias << std::endl;
47 if (Test_::config(jj).
has(
"obs bias")) {
48 const double reference = Test_::config(jj).getDouble(
"obs bias test.norm");
49 const double tolerance = Test_::config(jj).getDouble(
"obs bias test.relative tolerance");
50 EXPECT(oops::is_close_relative(bias->norm(), reference, tolerance));
61 typedef ObsTestsFixture<OBS> Test_;
64 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
65 eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration(
"obs bias");
66 typename ObsAux_::Parameters_ biasparams;
67 biasparams.validateAndDeserialize(biasconf);
68 std::unique_ptr<ObsAux_> bias(
new ObsAux_(Test_::obspace()[jj], biasparams));
70 std::unique_ptr<ObsAux_> other(
new ObsAux_(*bias));
82 template <
typename OBS>
89 std::string
testid()
const override {
return "test::ObsAuxControl<" + OBS::name() +
">";}
92 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
94 ts.emplace_back(
CASE(
"interface/ObsAuxControl/testConstructor")
95 { testConstructor<OBS>(); });
96 ts.emplace_back(
CASE(
"interface/ObsAuxControl/testCopyConstructor")
97 { testCopyConstructor<OBS>(); });
Auxiliary state related to observations, templated on <OBS>
ObsTestsFixture< OBS > Test_
std::string testid() const override
void register_tests() const override
void clear() const override
logical function has(this, var)
void testCopyConstructor()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.