summaryrefslogtreecommitdiff
path: root/src/cppunit/CompilerOutputter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cppunit/CompilerOutputter.cpp')
-rw-r--r--src/cppunit/CompilerOutputter.cpp27
1 files changed, 1 insertions, 26 deletions
diff --git a/src/cppunit/CompilerOutputter.cpp b/src/cppunit/CompilerOutputter.cpp
index 54c881a..025dd34 100644
--- a/src/cppunit/CompilerOutputter.cpp
+++ b/src/cppunit/CompilerOutputter.cpp
@@ -9,31 +9,6 @@
namespace CppUnit
{
-/** Print TestResult in a compiler compatible format.
- *
- * Note: NEED UPDATE
- *
- * Heres is an example of usage:
- * \code
- * int main( int argc, char* argv[] ) {
- * bool selfTest = (argc > 1) &&
- * (std::string("-selftest") == argv[1]);
- *
- * CppUnit::TextTestRunner runner;
- * runner.addTest( CppUnitTest::suite() );
- *
- * bool wasSucessful = runner.run( "", false, !selfTest );
- * if ( selfTest )
- * {
- * CppUnit::CompilerOutputter outputter( runner.result(),
- * std::cerr );
- * outputter.write();
- * }
- *
- * return wasSucessful ? 0 : 1;
- * }
- * \endcode
- */
CompilerOutputter::CompilerOutputter( TestResultCollector *result,
std::ostream &stream ) :
m_result( result ),
@@ -152,7 +127,7 @@ CompilerOutputter::printNotEqualMessage( Exception *thrownException )
m_stream << std::endl;
if ( !e->additionalMessage().empty() )
{
- m_stream << wrap( "- " + e->additionalMessage() );
+ m_stream << wrap( e->additionalMessage() );
m_stream << std::endl;
}
}