Lines Matching refs:writeAttribute
6253 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter::ScopedElement
6254 m_writer->writeAttribute( name, attribute ); in writeAttribute()
6275 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6277 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6280 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
6283 return writeAttribute( name, rss.str() ); in writeAttribute()
15629 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
15635 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
16840 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
16841 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
16842 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
16843 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
16844 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup()
16846 xml.writeAttribute( "time", "" ); in writeGroup()
16848 xml.writeAttribute( "time", suiteTime ); in writeGroup()
16849 xml.writeAttribute( "timestamp", getCurrentTimestamp() ); in writeGroup()
16856 .writeAttribute("name", "filters") in writeGroup()
16857 .writeAttribute("value", serializeFilters(m_config->getTestsOrTags())); in writeGroup()
16861 .writeAttribute("name", "random-seed") in writeGroup()
16862 .writeAttribute("value", m_config->rngSeed()); in writeGroup()
16908 xml.writeAttribute( "classname", name ); in writeSection()
16909 xml.writeAttribute( "name", "root" ); in writeSection()
16912 xml.writeAttribute( "classname", className ); in writeSection()
16913 xml.writeAttribute( "name", name ); in writeSection()
16915 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
16920 xml.writeAttribute( "status", "run" ); in writeSection()
16969 xml.writeAttribute( "message", result.getExpression() ); in writeAssertion()
16970 xml.writeAttribute( "type", result.getTestMacroName() ); in writeAssertion()
17188 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo()
17189 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
17203 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
17205 m_xml.writeAttribute( "filters", serializeFilters( m_config->getTestsOrTags() ) ); in testRunStarting()
17208 .writeAttribute( "seed", m_config->rngSeed() ); in testRunStarting()
17214 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
17220 .writeAttribute( "name", trim( testInfo.name ) ) in testCaseStarting()
17221 .writeAttribute( "description", testInfo.description ) in testCaseStarting()
17222 .writeAttribute( "tags", testInfo.tagsAsString() ); in testCaseStarting()
17235 .writeAttribute( "name", trim( sectionInfo.name ) ); in sectionStarting()
17269 .writeAttribute( "success", result.succeeded() ) in assertionEnded()
17270 .writeAttribute( "type", result.getTestMacroName() ); in assertionEnded()
17321 e.writeAttribute( "successes", sectionStats.assertions.passed ); in sectionEnded()
17322 e.writeAttribute( "failures", sectionStats.assertions.failed ); in sectionEnded()
17323 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
17326 e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds ); in sectionEnded()
17335 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
17338 e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() ); in testCaseEnded()
17352 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
17353 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
17354 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
17356 .writeAttribute( "successes", testGroupStats.totals.testCases.passed ) in testGroupEnded()
17357 .writeAttribute( "failures", testGroupStats.totals.testCases.failed ) in testGroupEnded()
17358 .writeAttribute( "expectedFailures", testGroupStats.totals.testCases.failedButOk ); in testGroupEnded()
17365 .writeAttribute( "successes", testRunStats.totals.assertions.passed ) in testRunEnded()
17366 .writeAttribute( "failures", testRunStats.totals.assertions.failed ) in testRunEnded()
17367 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
17369 .writeAttribute( "successes", testRunStats.totals.testCases.passed ) in testRunEnded()
17370 .writeAttribute( "failures", testRunStats.totals.testCases.failed ) in testRunEnded()
17371 .writeAttribute( "expectedFailures", testRunStats.totals.testCases.failedButOk ); in testRunEnded()
17378 .writeAttribute("name", name); in benchmarkPreparing()
17382 m_xml.writeAttribute("samples", info.samples) in benchmarkStarting()
17383 .writeAttribute("resamples", info.resamples) in benchmarkStarting()
17384 .writeAttribute("iterations", info.iterations) in benchmarkStarting()
17385 .writeAttribute("clockResolution", info.clockResolution) in benchmarkStarting()
17386 .writeAttribute("estimatedDuration", info.estimatedDuration) in benchmarkStarting()
17392 .writeAttribute("value", benchmarkStats.mean.point.count()) in benchmarkEnded()
17393 .writeAttribute("lowerBound", benchmarkStats.mean.lower_bound.count()) in benchmarkEnded()
17394 .writeAttribute("upperBound", benchmarkStats.mean.upper_bound.count()) in benchmarkEnded()
17395 .writeAttribute("ci", benchmarkStats.mean.confidence_interval); in benchmarkEnded()
17398 .writeAttribute("value", benchmarkStats.standardDeviation.point.count()) in benchmarkEnded()
17399 .writeAttribute("lowerBound", benchmarkStats.standardDeviation.lower_bound.count()) in benchmarkEnded()
17400 .writeAttribute("upperBound", benchmarkStats.standardDeviation.upper_bound.count()) in benchmarkEnded()
17401 .writeAttribute("ci", benchmarkStats.standardDeviation.confidence_interval); in benchmarkEnded()
17404 .writeAttribute("variance", benchmarkStats.outlierVariance) in benchmarkEnded()
17405 .writeAttribute("lowMild", benchmarkStats.outliers.low_mild) in benchmarkEnded()
17406 .writeAttribute("lowSevere", benchmarkStats.outliers.low_severe) in benchmarkEnded()
17407 .writeAttribute("highMild", benchmarkStats.outliers.high_mild) in benchmarkEnded()
17408 .writeAttribute("highSevere", benchmarkStats.outliers.high_severe); in benchmarkEnded()
17415 writeAttribute("message", error); in benchmarkFailed()