XmlReporter: Trim test case name; added description and tags attributes to the test case element in the xml report.

This commit is contained in:
Marek Klus 2017-02-08 09:52:32 +11:00 committed by Phil Nash
parent 97d8003a71
commit ab199d9cf9
1 changed files with 4 additions and 1 deletions

View File

@ -60,7 +60,10 @@ namespace Catch {
virtual void testCaseStarting( TestCaseInfo const& testInfo ) CATCH_OVERRIDE {
StreamingReporterBase::testCaseStarting(testInfo);
m_xml.startElement( "TestCase" ).writeAttribute( "name", testInfo.name );
m_xml.startElement( "TestCase" )
.writeAttribute( "name", trim( testInfo.name ) )
.writeAttribute( "description", testInfo.description )
.writeAttribute( "tags", testInfo.tagsAsString );
if ( m_config->showDurations() == ShowDurations::Always )
m_testCaseTimer.start();