TravelCCM Logo  1.00.1
C++ Travel Customer Choice Model Library
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
TravelChoiceTestSuite.hpp
Go to the documentation of this file.
1 // STL
2 #include <sstream>
3 // CPPUNIT
4 #include <cppunit/extensions/HelperMacros.h>
5 
6 class TravelChoiceTestSuite : public CppUnit::TestFixture {
7  CPPUNIT_TEST_SUITE (TravelChoiceTestSuite);
8  CPPUNIT_TEST (testTravelChoice);
9  // CPPUNIT_TEST (errorCase);
10  CPPUNIT_TEST_SUITE_END ();
11 public:
12 
14  void testTravelChoice ();
15 
17  // void errorCase ();
18 
21 
22 protected:
23  std::stringstream _describeKey;
24 };