11 #ifndef TEST_INTERFACE_OBSAUXCOVARIANCE_H_
12 #define TEST_INTERFACE_OBSAUXCOVARIANCE_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include <boost/noncopyable.hpp>
22 #include "eckit/config/Configuration.h"
33 typedef ObsTestsFixture<OBS> Test_;
36 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
37 eckit::LocalConfiguration biasconf = Test_::config(jj).getSubConfiguration(
"obs bias");
38 typename Covariance_::Parameters_ biasparams;
39 biasparams.validateAndDeserialize(biasconf);
40 std::unique_ptr<Covariance_> cov(
new Covariance_(Test_::obspace()[jj], biasparams));
42 oops::Log::test() <<
"Testing ObsAuxCovariance: " << *cov << std::endl;
57 template <
typename OBS>
64 std::string
testid()
const override {
return "test::ObsAuxCovariance<" + OBS::name() +
">";}
67 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
69 ts.emplace_back(
CASE(
"interface/ObsAuxCovariance/testConstructor")
70 { testConstructor<OBS>(); });
Auxiliary error covariance related to observations, templated on <OBS>
ObsTestsFixture< OBS > Test_
virtual ~ObsAuxCovariance()
void clear() const override
std::string testid() const override
void register_tests() const override
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.