TraDemGen Logo  1.00.8
C++ Simulated Travel Demand Generation Library
Loading...
Searching...
No Matches
DemandGenerationTestSuite.hpp
Go to the documentation of this file.
1// STL
2#include <iosfwd>
3// CPPUNIT
4#include <cppunit/extensions/HelperMacros.h>
5
6class DemandGenerationTestSuite : public CppUnit::TestFixture {
7 CPPUNIT_TEST_SUITE (DemandGenerationTestSuite);
8 CPPUNIT_TEST (simpleEventGeneration);
9 // CPPUNIT_TEST (errorCase);
10 CPPUNIT_TEST_SUITE_END ();
11public:
12
15
17 // void errorCase ();
18
21
22private:
24 void simpleEventGenerationHelper();
25
26protected:
27 std::stringstream _describeKey;
28};
29
CPPUNIT_TEST_SUITE_REGISTRATION(DemandGenerationTestSuite)