OOPS
TestEnvironment.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef TEST_TESTENVIRONMENT_H_
12 #define TEST_TESTENVIRONMENT_H_
13 
14 #include <memory>
15 
16 #include <boost/noncopyable.hpp>
17 
18 #include "eckit/config/LocalConfiguration.h"
19 
20 namespace test {
21 
22 /// TestEnvironment is a singleton that defines the unit testing enviroment
23 /*! TestEnvironment contains globally available information for the unit
24  * tests. It is needed because there is no easy method to pass configuration
25  * and other data to the tests. By defining a singleton, each test can
26  * use TestEnvironment::getInstance() to get access to the global data.
27  */
28 
29 class TestEnvironment : private boost::noncopyable {
30  public:
32  static TestEnvironment theTestEnvironment;
33  return theTestEnvironment;
34  }
35 
36  void setup(const eckit::Configuration & conf) {
37  config_.reset(new eckit::LocalConfiguration(conf));
38  }
39 
40  static const eckit::Configuration & config() {return *getInstance().config_;}
41 
42  private:
45 
46  std::unique_ptr<const eckit::Configuration> config_;
47 };
48 
49 } // namespace test
50 
51 #endif // TEST_TESTENVIRONMENT_H_
TestEnvironment is a singleton that defines the unit testing enviroment.
static const eckit::Configuration & config()
void setup(const eckit::Configuration &conf)
static TestEnvironment & getInstance()
std::unique_ptr< const eckit::Configuration > config_