• Home
  • Raw
  • Download

Lines Matching refs:writeAttribute

8934             ScopedElement& writeAttribute( std::string const& name, T const& attribute ) {  in writeAttribute()  function in Catch::XmlWriter::ScopedElement
8935 m_writer->writeAttribute( name, attribute ); in writeAttribute()
8990 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
8996 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
9002 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
9005 return writeAttribute( name, oss.str() ); in writeAttribute()
9109 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
9115 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
9120 m_xml.startElement( "TestCase" ).writeAttribute( "name", trim( testInfo.name ) ); in testCaseStarting()
9130 .writeAttribute( "name", trim( sectionInfo.name ) ) in sectionStarting()
9131 .writeAttribute( "description", sectionInfo.description ); in sectionStarting()
9162 .writeAttribute( "success", assertionResult.succeeded() ) in assertionEnded()
9163 .writeAttribute( "type", assertionResult.getTestMacroName() ) in assertionEnded()
9164 .writeAttribute( "filename", assertionResult.getSourceInfo().file ) in assertionEnded()
9165 .writeAttribute( "line", assertionResult.getSourceInfo().line ); in assertionEnded()
9177 .writeAttribute( "filename", assertionResult.getSourceInfo().file ) in assertionEnded()
9178 .writeAttribute( "line", assertionResult.getSourceInfo().line ) in assertionEnded()
9183 .writeAttribute( "filename", assertionResult.getSourceInfo().file ) in assertionEnded()
9184 .writeAttribute( "line", assertionResult.getSourceInfo().line ) in assertionEnded()
9212 e.writeAttribute( "successes", sectionStats.assertions.passed ); in sectionEnded()
9213 e.writeAttribute( "failures", sectionStats.assertions.failed ); in sectionEnded()
9214 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
9217 e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds ); in sectionEnded()
9226 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
9229 e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() ); in testCaseEnded()
9238 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
9239 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
9240 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
9247 .writeAttribute( "successes", testRunStats.totals.assertions.passed ) in testRunEnded()
9248 .writeAttribute( "failures", testRunStats.totals.assertions.failed ) in testRunEnded()
9249 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
9325 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
9326 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
9327 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
9328 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
9329 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup()
9331 xml.writeAttribute( "time", "" ); in writeGroup()
9333 xml.writeAttribute( "time", suiteTime ); in writeGroup()
9334 xml.writeAttribute( "timestamp", "tbd" ); // !TBD in writeGroup()
9376 xml.writeAttribute( "classname", name ); in writeSection()
9377 xml.writeAttribute( "name", "root" ); in writeSection()
9380 xml.writeAttribute( "classname", className ); in writeSection()
9381 xml.writeAttribute( "name", name ); in writeSection()
9383 … xml.writeAttribute( "time", Catch::toString( sectionNode.stats.durationInSeconds ) ); in writeSection()
9442 xml.writeAttribute( "message", result.getExpandedExpression() ); in writeAssertion()
9443 xml.writeAttribute( "type", result.getTestMacroName() ); in writeAssertion()