IODA
test_odb_query_parameters.cpp
Go to the documentation of this file.
1 /*
2  * (C) Crown Copyright 2021 UK Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #include <string>
9 #include <vector>
10 
11 #include "eckit/config/LocalConfiguration.h"
12 #include "eckit/testing/Test.h"
13 
14 #include "oops/mpi/mpi.h"
15 #include "oops/runs/Run.h"
16 #include "oops/runs/Test.h"
17 #include "oops/test/TestEnvironment.h"
18 
20 
21 // -----------------------------------------------------------------------------
22 
23 CASE("Validation") {
24  const eckit::Configuration &conf = ::test::TestEnvironment::config();
25  std::vector<eckit::LocalConfiguration> confs;
26  conf.get("ODB Parameters", confs);
27  for (size_t jconf = 0; jconf < confs.size(); ++jconf) {
28  eckit::LocalConfiguration config = confs[jconf];
30  params.validateAndDeserialize(config);
31  }
32 }
33 
34 // -----------------------------------------------------------------------------
35 
36 class OdbQueryParameters : public oops::Test {
37  private:
38  std::string testid() const override {return "ioda::test::OdbQueryParameters";}
39 
40  void register_tests() const override {}
41 
42  void clear() const override {}
43 };
44 
45 // -----------------------------------------------------------------------------
46 
47 int main(int argc, char **argv) {
48  oops::Run run(argc, argv);
49  OdbQueryParameters tests;
50  return run.execute(tests);
51 }
void clear() const override
std::string testid() const override
void register_tests() const override
CASE("Validation")
int main(int argc, char **argv)