Lines Matching refs:writeAttribute

9989             ScopedElement& writeAttribute( std::string const& name, T const& attribute ) {  in writeAttribute()  function in Catch::XmlWriter::ScopedElement
9990 m_writer->writeAttribute( name, attribute ); in writeAttribute()
10050 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
10056 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
10062 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
10065 return writeAttribute( name, oss.str() ); in writeAttribute()
10151 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo()
10152 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
10168 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
10174 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
10180 .writeAttribute( "name", trim( testInfo.name ) ) in testCaseStarting()
10181 .writeAttribute( "description", testInfo.description ) in testCaseStarting()
10182 .writeAttribute( "tags", testInfo.tagsAsString ); in testCaseStarting()
10195 .writeAttribute( "name", trim( sectionInfo.name ) ) in sectionStarting()
10196 .writeAttribute( "description", sectionInfo.description ); in sectionStarting()
10232 .writeAttribute( "success", result.succeeded() ) in assertionEnded()
10233 .writeAttribute( "type", result.getTestMacroName() ); in assertionEnded()
10284 e.writeAttribute( "successes", sectionStats.assertions.passed ); in sectionEnded()
10285 e.writeAttribute( "failures", sectionStats.assertions.failed ); in sectionEnded()
10286 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
10289 e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds ); in sectionEnded()
10298 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
10301 e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() ); in testCaseEnded()
10315 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
10316 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
10317 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
10324 .writeAttribute( "successes", testRunStats.totals.assertions.passed ) in testRunEnded()
10325 .writeAttribute( "failures", testRunStats.totals.assertions.failed ) in testRunEnded()
10326 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
10436 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
10437 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
10438 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
10439 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
10440 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup()
10442 xml.writeAttribute( "time", "" ); in writeGroup()
10444 xml.writeAttribute( "time", suiteTime ); in writeGroup()
10445 xml.writeAttribute( "timestamp", getCurrentTimestamp() ); in writeGroup()
10487 xml.writeAttribute( "classname", name ); in writeSection()
10488 xml.writeAttribute( "name", "root" ); in writeSection()
10491 xml.writeAttribute( "classname", className ); in writeSection()
10492 xml.writeAttribute( "name", name ); in writeSection()
10494 … xml.writeAttribute( "time", Catch::toString( sectionNode.stats.durationInSeconds ) ); in writeSection()
10553 xml.writeAttribute( "message", result.getExpandedExpression() ); in writeAssertion()
10554 xml.writeAttribute( "type", result.getTestMacroName() ); in writeAssertion()