Update of /cvsroot/cppunit/cppunit2/include/cpput
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13773/include/cpput
Modified Files:
testcase.h testvisitor.h
Log Message:
* added CPPTL_ARRAY_SIZE
* added typedef LargestInt and LargestUnsignedInt
Index: testcase.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpput/testcase.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** testcase.h 20 Jul 2005 21:06:49 -0000 1.10
--- testcase.h 6 Sep 2005 07:14:49 -0000 1.11
***************
*** 16,23 ****
AbstractTestCase( const CppTL::ConstString &name );
- /// @warning: TestInfo::startNewTest() must be called before each test
bool runTest();
! /// @warning: TestInfo::startNewTest() must be called before each test
bool runTest( const ExceptionGuard &guardsChain );
--- 16,27 ----
AbstractTestCase( const CppTL::ConstString &name );
bool runTest();
! /*! \brief Run the test case.
! * Call TestInfo::startNewTest() before starting the test.
! * Then, setUp(), run() and finally tearDown() are called. run() is only called
! * if setUp() did not failed (no assertion or exception failed during setUp()
! * call).
! */
bool runTest( const ExceptionGuard &guardsChain );
Index: testvisitor.h
===================================================================
RCS file: /cvsroot/cppunit/cppunit2/include/cpput/testvisitor.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** testvisitor.h 15 Nov 2004 08:30:05 -0000 1.2
--- testvisitor.h 6 Sep 2005 07:14:49 -0000 1.3
***************
*** 14,18 ****
}
! virtual void visitTestCase( Test &test ) = 0;
virtual void visitTestSuite( AbstractTestSuite &suite ) = 0;
--- 14,18 ----
}
! virtual void visitTestCase( AbstractTestCase &test ) = 0;
virtual void visitTestSuite( AbstractTestSuite &suite ) = 0;
|