TraDemGen Logo  0.2.2
C++ Simulated Travel Demand Generation Library
DemandGenerationTestSuite.hpp
Go to the documentation of this file.
00001 // STL
00002 #include <iosfwd>
00003 // CPPUNIT
00004 #include <cppunit/extensions/HelperMacros.h>
00005 
00006 class DemandGenerationTestSuite : public CppUnit::TestFixture {
00007   CPPUNIT_TEST_SUITE (DemandGenerationTestSuite);
00008   CPPUNIT_TEST (simpleEventGeneration);
00009   //  CPPUNIT_TEST (errorCase);
00010   CPPUNIT_TEST_SUITE_END ();
00011 public:
00012 
00014   void simpleEventGeneration();
00015 
00017   //  void errorCase ();
00018 
00020   DemandGenerationTestSuite ();
00021   
00022 private:
00024   void simpleEventGenerationHelper();
00025 
00026 protected:
00027   std::stringstream _describeKey;
00028 };
00029 
00030 CPPUNIT_TEST_SUITE_REGISTRATION (DemandGenerationTestSuite);
 All Classes Namespaces Files Functions Variables Typedefs Friends Defines