RMOL Logo  1.00.0
C++ library of Revenue Management and Optimisation classes and functions
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
ForecasterTestSuite.hpp
Go to the documentation of this file.
1 // STL
2 #include <sstream>
3 // CPPUNIT
4 #include <cppunit/extensions/HelperMacros.h>
5 
6 class ForecasterTestSuite : public CppUnit::TestFixture {
7  CPPUNIT_TEST_SUITE (ForecasterTestSuite);
8  CPPUNIT_TEST (testQForecaster);
9  CPPUNIT_TEST_SUITE_END ();
10 public:
11 
13  void testQForecaster();
14 
17 
18 protected:
19  std::stringstream _describeKey;
20 };
21