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 /include/cppunit/CompilerOutputter.h | |
| 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 'include/cppunit/CompilerOutputter.h')
| -rw-r--r-- | include/cppunit/CompilerOutputter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/CompilerOutputter.h b/include/cppunit/CompilerOutputter.h index b2b183d..6337768 100644 --- a/include/cppunit/CompilerOutputter.h +++ b/include/cppunit/CompilerOutputter.h @@ -46,10 +46,10 @@ class TestResultCollector; * } * * // Run the test and don't wait a key if post build check. - * bool wasSucessful = runner.run( "", !selfTest ); + * bool wasSuccessful = runner.run( "", !selfTest ); * * // Return error code 1 if the one of test failed. - * return wasSucessful ? 0 : 1; + * return wasSuccessful ? 0 : 1; * } * \endcode */ @@ -105,7 +105,7 @@ public: void write(); - virtual void printSucess(); + virtual void printSuccess(); virtual void printFailureReport(); virtual void printFailuresList(); virtual void printStatistics(); |
