8 #ifndef TEST_INTERFACE_OBSDATAVECTOR_H_
9 #define TEST_INTERFACE_OBSDATAVECTOR_H_
15 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
17 #include "eckit/config/LocalConfiguration.h"
18 #include "eckit/testing/Test.h"
23 #include "oops/util/dot_product.h"
35 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
37 std::unique_ptr<ObsDataVector_> odv1(
new ObsDataVector_(Test_::obspace()[jj], vars));
41 oops::Log::test() <<
"Printing zero ObsDataVector: " << *odv1 << std::endl;
43 std::unique_ptr<ObsDataVector_> odv2(
new ObsDataVector_(*odv1));
60 const double tolerance = 1.0e-10;
61 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
65 ObsDataVector_ odv(ov1);
66 oops::Log::test() <<
"Printing random ObsDataVector: " << odv << std::endl;
72 oops::Log::test() <<
"ObsVector - ObsDataVector = " << ov1 << std::endl;
73 const double diff = dot_product(ov1, ov1);
74 oops::Log::test() <<
"ObsVector, ObsDataVector diff = " << diff << std::endl;
75 EXPECT(diff < tolerance);
80 template <
typename OBS>
89 std::string
testid()
const override {
return "test::ObsDataVector<" + OBS::name() +
", float>";}
92 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
94 ts.emplace_back(
CASE(
"interface/ObsDataVector/testConstructors")
95 { testConstructors<OBS>(); });
96 ts.emplace_back(
CASE(
"interface/ObsDataVector/testObsVector")
97 { testObsVector<OBS>(); });
ObsDataVector is a vector templated on data type, in the observation space.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
void random()
Set each value in this ObsVector to a random value.
std::string testid() const override
ObsTestsFixture< OBS > Test_
void register_tests() const override
void clear() const override
void testConstructors()
tests constructor and print method
CASE("test_linearmodelparameterswrapper_valid_name")