Revision Log
Revision: 1.4 - (view) (download) (as text)
| 1 : | ktanaka | 1.1 | #ifndef _ASSUMPTION_TEST_H |
| 2 : | #define _ASSUMPTION_TEST_H | ||
| 3 : | #include <cppunit/TestCase.h> | ||
| 4 : | #include <cppunit/TestCaller.h> | ||
| 5 : | #include <cppunit/TestSuite.h> | ||
| 6 : | #include <cppunit/TestResult.h> | ||
| 7 : | #include <cppunit/TextTestRunner.h> | ||
| 8 : | ktanaka | 1.4 | #include <cppunit/extensions/HelperMacros.h> |
| 9 : | ktanaka | 1.1 | #include "Assumption.h" |
| 10 : | ktanaka | 1.3 | #include <iostream> |
| 11 : | #include <vector> | ||
| 12 : | ktanaka | 1.1 | |
| 13 : | ktanaka | 1.4 | class AssumptionTest : public CppUnit::TestFixture { |
| 14 : | CPPUNIT_TEST_SUITE( AssumptionTest ); | ||
| 15 : | CPPUNIT_TEST( testShow ); | ||
| 16 : | CPPUNIT_TEST_SUITE_END(); | ||
| 17 : | ktanaka | 1.1 | private: |
| 18 : | Assumption *a1; | ||
| 19 : | public: | ||
| 20 : | ktanaka | 1.4 | void setUp(); |
| 21 : | void tearDown(); | ||
| 22 : | void testShow(); | ||
| 23 : | ktanaka | 1.1 | }; |
| 24 : | |||
| 25 : | |||
| 26 : | #endif /* _ASSUMPTION_TEST_H */ |
|
ktanaka Powered by ViewCVS 1.0-dev |
ViewCVS and CVS Help |