AirInv Logo  1.00.10
C++ Simulated Airline Inventory Management System Library
Loading...
Searching...
No Matches
InventoryTestSuite.hpp
Go to the documentation of this file.
1// STL
2#include <iosfwd>
3// CPPUNIT
4#include <cppunit/extensions/HelperMacros.h>
5
7class InventoryTestSuite : public CppUnit::TestFixture {
8 CPPUNIT_TEST_SUITE (InventoryTestSuite);
9 CPPUNIT_TEST (simpleInventory);
10 // CPPUNIT_TEST (errorCase);
11 CPPUNIT_TEST_SUITE_END ();
12public:
13
16
18 // void errorCase ();
19
22
23private:
25 void simpleInventoryHelper();
26
27protected:
28 std::stringstream _describeKey;
29};
30
CPPUNIT_TEST_SUITE_REGISTRATION(InventoryTestSuite)
std::stringstream _describeKey