RMOL Logo  0.25.3
C++ library of Revenue Management and Optimisation classes and functions
 All Classes Namespaces Files Functions Variables Typedefs Friends Defines
ForecasterTestSuite.hpp
Go to the documentation of this file.
00001 // STL
00002 #include <sstream>
00003 // CPPUNIT
00004 #include <cppunit/extensions/HelperMacros.h>
00005 
00006 class ForecasterTestSuite : public CppUnit::TestFixture {
00007   CPPUNIT_TEST_SUITE (ForecasterTestSuite);
00008   CPPUNIT_TEST (testQForecaster);
00009   CPPUNIT_TEST_SUITE_END ();
00010 public:
00011 
00013   void testQForecaster();
00014 
00016   ForecasterTestSuite ();
00017   
00018 protected:
00019   std::stringstream _describeKey;
00020 };
00021 
00022 CPPUNIT_TEST_SUITE_REGISTRATION (ForecasterTestSuite);