summaryrefslogtreecommitdiff
path: root/examples/cppunittest/CppUnitTestMain.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2003-04-06 08:51:46 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2003-04-06 08:51:46 +0000
commit965425ea6d164a498e1349337a885fcc64b9b19f (patch)
tree1d2104fdf7aa07e391e4edb1f41c214671abf909 /examples/cppunittest/CppUnitTestMain.cpp
parentaf6bbfefca62714505166f7183c7be8d58d67615 (diff)
downloadcppunit-965425ea6d164a498e1349337a885fcc64b9b19f.tar.gz
include/cppunit/extensions/TestSuiteBuilder.h: removed (unused)
Diffstat (limited to 'examples/cppunittest/CppUnitTestMain.cpp')
-rw-r--r--examples/cppunittest/CppUnitTestMain.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/examples/cppunittest/CppUnitTestMain.cpp b/examples/cppunittest/CppUnitTestMain.cpp
index 83bfe61..aa7591e 100644
--- a/examples/cppunittest/CppUnitTestMain.cpp
+++ b/examples/cppunittest/CppUnitTestMain.cpp
@@ -46,11 +46,12 @@ main( int argc, char* argv[] )
CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
outputter.write();
- std::ofstream file( "tests.xml" );
- CPPUNIT_NS::XmlOutputter xml( &result, file );
- xml.setStyleSheet( "report.xsl" );
- xml.write();
- file.close();
+// Uncomment this for XML output
+// std::ofstream file( "tests.xml" );
+// CPPUNIT_NS::XmlOutputter xml( &result, file );
+// xml.setStyleSheet( "report.xsl" );
+// xml.write();
+// file.close();
}
catch ( std::invalid_argument &e ) // Test path not resolved
{