summaryrefslogtreecommitdiff
path: root/examples/cppunittest
Commit message (Collapse)AuthorAgeFilesLines
...
* Src/cppunit/TypeInfoHelper.Baptiste Lepilleur2001-06-051-3/+32
| | | | | | | | | | | | | | | | src/cppunit/TypeInfoHelper.cpp: removed #include <config.h>, cppunit/config.h was already included. * src/cppunit/cppunit.dsp: removed TestAssert.cpp from project. * added/updated .cvsignore files for beter handling of windows projects. * added include/cppunit/config.h with a default configuration for VC++ 6.0. * include/cppunit/.cvsignore: removed config.h from the list of ignored file. * renamed VC++ configurations without RTTI from "Debug No CU_USE_TYPEINFO" to "Debug Crossplatform". * include/cppunit/TestAssert.h: added include <math.h> for fabs().
* Change to templatized TestAssert::assertEquals() and the new CPPUNIT_ASSERT* ↵Steve M. Robbins2001-06-022-28/+28
| | | | macros
* Replace CU_ by CPPUNIT_.Steve M. Robbins2001-06-023-4/+4
|
* (suite): fixed 'ISO C++ forbids taking the address of a bound member ↵Bastiaan Bakker2001-06-012-13/+19
| | | | | | function to form a pointer to member function' bug reported by g++. (suite): removed dependency on RTTI.
* Added.Bastiaan Bakker2001-06-011-0/+20
|
* Added project cppunittest to examples/: unit tests to test cppunit.Baptiste Lepilleur2001-06-0111-0/+851
added project cppunittest to examples/: unit tests to test cppunit. The main file is CppUnitTestMain.cpp. Unit tests have been implemented for TestCaller and TestListener. * added project CppUnitTestApp to examples/msvc6: graphical runner for cppunittest. * added TestListener to TestResult. It is a port of junit TestListener. * updated some .cvsignore to ignore files generated with VC++.