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/CompilerOutputter.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/CompilerOutputter.cpp')
| -rw-r--r-- | src/cppunit/CompilerOutputter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cppunit/CompilerOutputter.cpp b/src/cppunit/CompilerOutputter.cpp index a828a40..2722cb3 100644 --- a/src/cppunit/CompilerOutputter.cpp +++ b/src/cppunit/CompilerOutputter.cpp @@ -43,14 +43,14 @@ void CompilerOutputter::write() { if ( m_result->wasSuccessful() ) - printSucess(); + printSuccess(); else printFailureReport(); } void -CompilerOutputter::printSucess() +CompilerOutputter::printSuccess() { m_stream << "OK (" << m_result->runTests() << ")" << std::endl; |
