1 #ifndef CPPUNITUI_MFC_MFCTESTRUNNER_H 2 #define CPPUNITUI_MFC_MFCTESTRUNNER_H 6 #endif // _MSC_VER >= 1000 60 void addTest(
Test *test );
62 void addTests(
const CppUnitVector<Test *> &tests );
69 typedef CppUnitVector<Test *>
Tests;
76 #endif // CPPUNITUI_MFC_MFCTESTRUNNER_H
CppUnitVector< Test * > Tests
Definition: MfcTestRunner.h:69
TestSuite * m_suite
Definition: MfcTestRunner.h:67
Base class for all test objects.All test objects should be a subclass of Test. Some test objects...
Definition: Test.h:25
#define CPPUNIT_NS_END
Definition: Portability.h:120
#define CPPUNIT_NS_BEGIN
Definition: Portability.h:119
MFC test runner.Use this to launch the MFC TestRunner. Usually called from you CWinApp subclass: ...
Definition: MfcTestRunner.h:52
Tests m_tests
Definition: MfcTestRunner.h:70
A Composite of Tests.It runs a collection of test cases. Here is an example.
Definition: TestSuite.h:40