diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-04-14 09:08:37 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-04-14 09:08:37 +0000 |
| commit | 5f5af41d52c01c8320baffea21cd60ebbb16380b (patch) | |
| tree | 7e4d2a3072081dfcf43f3be8a06264f09e79cbb4 /src/cppunit/TestResultCollector.cpp | |
| parent | 70d62c5c20105c982df7379e2e61148fc959ff35 (diff) | |
| download | cppunit-5f5af41d52c01c8320baffea21cd60ebbb16380b.tar.gz | |
NEWS: updated.
NEWS: updated.
* include/cppunit/TestSucessListener.h:
* src/cppunit/TestSucessListener.cpp: renamed TestSuccessListener
* doc/cookbook.dox:
* src/msvc6/DllPlugInTester/DllPlugInTester.cpp:
* examples/cppunittest/TestResultCollectorTest.h:
* examples/cppunittest/TestResultCollectorTest.cpp:
* examples/cppunittest/XmlOutputterTest.h:
* examples/cppunittest/XmlOutputterTest.cpp:
* include/cppunit/CompilerOutputter.h:
* include/cppunit/TestListener.h:
* include/cppunit/XmlOutputter.h:
* src/cppunit/XmlOutputter.cpp:
* src/cppunit/CompilerOutputter.cpp: fixed 'success' typo (was misspelled
'sucess').
* include/cppunit/TestResultCollector.h:
* src/cppunit/TestResultCollector.cpp: updated (renaming of
TestSucessListener).
* src/cppunit/XmlOutputter.cpp:
* examples/cppunittest/XmlOutputterTest.cpp: Changed SucessfulTests tag to
SucessfulTests.
Diffstat (limited to 'src/cppunit/TestResultCollector.cpp')
| -rw-r--r-- | src/cppunit/TestResultCollector.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cppunit/TestResultCollector.cpp b/src/cppunit/TestResultCollector.cpp index 796ffc3..1d6e057 100644 --- a/src/cppunit/TestResultCollector.cpp +++ b/src/cppunit/TestResultCollector.cpp @@ -7,7 +7,7 @@ namespace CppUnit TestResultCollector::TestResultCollector( SynchronizationObject *syncObject ) - : TestSucessListener( syncObject ) + : TestSuccessListener( syncObject ) { reset(); } @@ -24,7 +24,7 @@ TestResultCollector::~TestResultCollector() void TestResultCollector::reset() { - TestSucessListener::reset(); + TestSuccessListener::reset(); ExclusiveZone zone( m_syncObject ); m_testErrors = 0; @@ -44,7 +44,7 @@ TestResultCollector::startTest( Test *test ) void TestResultCollector::addFailure( const TestFailure &failure ) { - TestSucessListener::addFailure( failure ); + TestSuccessListener::addFailure( failure ); ExclusiveZone zone( m_syncObject ); if ( failure.isError() ) |
