11 #ifndef TEST_BASE_VARIABLES_H_
12 #define TEST_BASE_VARIABLES_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include "eckit/config/LocalConfiguration.h"
21 #include "eckit/testing/Test.h"
36 const std::vector<std::string> varnames{
"bt",
"emiss"};
37 const std::vector<int> channels{1, 2, 3, 4};
38 std::unique_ptr<oops::Variables> other(
new oops::Variables(varnames, channels));
40 const std::vector<std::string> expectedVariables{
"bt_1",
"bt_2",
"bt_3",
"bt_4",
41 "emiss_1",
"emiss_2",
"emiss_3",
"emiss_4"};
42 EXPECT(other->variables() == expectedVariables);
43 EXPECT(other->channels() == channels);
47 const std::vector<std::string> varnames{
"bt",
"emiss"};
48 const std::vector<int> channels{};
49 std::unique_ptr<oops::Variables> other(
new oops::Variables(varnames, channels));
51 EXPECT(other->variables() == varnames);
52 EXPECT(other->channels() == channels);
56 const std::vector<std::string> varnames{};
57 const std::vector<int> channels{};
60 EXPECT(other.
channels() == channels);
75 std::unique_ptr<oops::Variables> vars(
new oops::Variables(conf,
"test variables"));
101 EXPECT(vars.
size() == vars_check.size()+1);
103 for (std::size_t jvar = 0; jvar < vars_check.size(); ++jvar) {
104 EXPECT(vars[jvar] == vars_check[jvar]);
115 std::string
testid()
const override {
return "test::Variables";}
118 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
120 ts.emplace_back(
CASE(
"Variables/testConstructor")
122 ts.emplace_back(
CASE(
"Variables/testCopyConstructor")
124 ts.emplace_back(
CASE(
"Variables/testFortranInterface")
const std::vector< std::string > & variables() const
const std::vector< int > & channels() const
static const eckit::Configuration & config()
void register_tests() const override
void clear() const override
std::string testid() const override
void testCopyConstructor()
void test_vars_interface_f(const eckit::Configuration &, oops::Variables &)
This is intended as a general interface for testing objects in the util namespace from Fortran.
void testFortranInterface()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.