Lines Matching refs:writeAttribute

6051             ScopedElement& writeAttribute( std::string const& name, T const& attribute ) {  in writeAttribute()  function in Catch::XmlWriter::ScopedElement
6052 m_writer->writeAttribute( name, attribute ); in writeAttribute()
6072 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6074 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6077 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
6080 return writeAttribute( name, rss.str() ); in writeAttribute()
14888 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
14894 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
16060 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
16061 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
16062 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
16063 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
16064 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup()
16066 xml.writeAttribute( "time", "" ); in writeGroup()
16068 xml.writeAttribute( "time", suiteTime ); in writeGroup()
16069 xml.writeAttribute( "timestamp", getCurrentTimestamp() ); in writeGroup()
16076 .writeAttribute("name", "filters") in writeGroup()
16077 .writeAttribute("value", serializeFilters(m_config->getTestsOrTags())); in writeGroup()
16081 .writeAttribute("name", "random-seed") in writeGroup()
16082 .writeAttribute("value", m_config->rngSeed()); in writeGroup()
16128 xml.writeAttribute( "classname", name ); in writeSection()
16129 xml.writeAttribute( "name", "root" ); in writeSection()
16132 xml.writeAttribute( "classname", className ); in writeSection()
16133 xml.writeAttribute( "name", name ); in writeSection()
16135 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
16188 xml.writeAttribute( "message", result.getExpandedExpression() ); in writeAssertion()
16189 xml.writeAttribute( "type", result.getTestMacroName() ); in writeAssertion()
16385 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo()
16386 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
16400 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
16402 m_xml.writeAttribute( "filters", serializeFilters( m_config->getTestsOrTags() ) ); in testRunStarting()
16405 .writeAttribute( "seed", m_config->rngSeed() ); in testRunStarting()
16411 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
16417 .writeAttribute( "name", trim( testInfo.name ) ) in testCaseStarting()
16418 .writeAttribute( "description", testInfo.description ) in testCaseStarting()
16419 .writeAttribute( "tags", testInfo.tagsAsString() ); in testCaseStarting()
16432 .writeAttribute( "name", trim( sectionInfo.name ) ); in sectionStarting()
16466 .writeAttribute( "success", result.succeeded() ) in assertionEnded()
16467 .writeAttribute( "type", result.getTestMacroName() ); in assertionEnded()
16518 e.writeAttribute( "successes", sectionStats.assertions.passed ); in sectionEnded()
16519 e.writeAttribute( "failures", sectionStats.assertions.failed ); in sectionEnded()
16520 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
16523 e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds ); in sectionEnded()
16532 e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() ); in testCaseEnded()
16535 e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() ); in testCaseEnded()
16549 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
16550 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
16551 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
16558 .writeAttribute( "successes", testRunStats.totals.assertions.passed ) in testRunEnded()
16559 .writeAttribute( "failures", testRunStats.totals.assertions.failed ) in testRunEnded()
16560 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
16567 .writeAttribute("name", name); in benchmarkPreparing()
16571 m_xml.writeAttribute("samples", info.samples) in benchmarkStarting()
16572 .writeAttribute("resamples", info.resamples) in benchmarkStarting()
16573 .writeAttribute("iterations", info.iterations) in benchmarkStarting()
16574 .writeAttribute("clockResolution", static_cast<uint64_t>(info.clockResolution)) in benchmarkStarting()
16575 .writeAttribute("estimatedDuration", static_cast<uint64_t>(info.estimatedDuration)) in benchmarkStarting()
16581 .writeAttribute("value", static_cast<uint64_t>(benchmarkStats.mean.point.count())) in benchmarkEnded()
16582 … .writeAttribute("lowerBound", static_cast<uint64_t>(benchmarkStats.mean.lower_bound.count())) in benchmarkEnded()
16583 … .writeAttribute("upperBound", static_cast<uint64_t>(benchmarkStats.mean.upper_bound.count())) in benchmarkEnded()
16584 .writeAttribute("ci", benchmarkStats.mean.confidence_interval); in benchmarkEnded()
16587 .writeAttribute("value", benchmarkStats.standardDeviation.point.count()) in benchmarkEnded()
16588 .writeAttribute("lowerBound", benchmarkStats.standardDeviation.lower_bound.count()) in benchmarkEnded()
16589 .writeAttribute("upperBound", benchmarkStats.standardDeviation.upper_bound.count()) in benchmarkEnded()
16590 .writeAttribute("ci", benchmarkStats.standardDeviation.confidence_interval); in benchmarkEnded()
16593 .writeAttribute("variance", benchmarkStats.outlierVariance) in benchmarkEnded()
16594 .writeAttribute("lowMild", benchmarkStats.outliers.low_mild) in benchmarkEnded()
16595 .writeAttribute("lowSevere", benchmarkStats.outliers.low_severe) in benchmarkEnded()
16596 .writeAttribute("highMild", benchmarkStats.outliers.high_mild) in benchmarkEnded()
16597 .writeAttribute("highSevere", benchmarkStats.outliers.high_severe); in benchmarkEnded()
16604 writeAttribute("message", error); in benchmarkFailed()