AirTSP Logo  1.01.0
C++ Simulated Airline Travel Solution Provider Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AirlineScheduleTestSuite.hpp
Go to the documentation of this file.
1 // STL
2 #include <sstream>
3 // CPPUNIT
4 #include <cppunit/extensions/HelperMacros.h>
5 
6 class AirlineScheduleTestSuite : public CppUnit::TestFixture {
7  CPPUNIT_TEST_SUITE (AirlineScheduleTestSuite);
8 // CPPUNIT_TEST (externalMemoryManagement);
9  CPPUNIT_TEST (scheduleParsing);
10  CPPUNIT_TEST_SUITE_END ();
11 public:
12 
20  void scheduleParsing ();
21 
24 
25 protected:
26  std::stringstream _describeKey;
27 };