Home
last modified time | relevance | path

Searched refs:failedButOk (Results 1 – 8 of 8) sorted by relevance

/external/catch2/include/internal/
Dcatch_totals.cpp16 diff.failedButOk = failedButOk - other.failedButOk; in operator -()
23 failedButOk += other.failedButOk; in operator +=()
28 return passed + failed + failedButOk; in total()
31 return failed == 0 && failedButOk == 0; in allPassed()
54 else if( diff.assertions.failedButOk > 0 ) in delta()
55 ++diff.testCases.failedButOk; in delta()
Dcatch_totals.h25 std::size_t failedButOk = 0; member
Dcatch_run_context.cpp152 m_totals.assertions.failedButOk++; in assertionEnded()
/external/catch2/include/reporters/
Dcatch_reporter_xml.cpp176 e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk ); in sectionEnded()
207 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
216 .writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk ); in testRunEnded()
Dcatch_reporter_console.cpp575 .addRow(totals.testCases.failedButOk) in printTotals()
576 .addRow(totals.assertions.failedButOk)); in printTotals()
603 … std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total()); in printTotalsDivider()
/external/bcc/tests/cc/
Dcatch.hpp2186 Counts() : passed( 0 ), failed( 0 ), failedButOk( 0 ) {} in Counts()
2192 diff.failedButOk = failedButOk - other.failedButOk; in operator -()
2198 failedButOk += other.failedButOk; in operator +=()
2203 return passed + failed + failedButOk; in total()
2206 return failed == 0 && failedButOk == 0; in allPassed()
2214 std::size_t failedButOk; member
2230 else if( diff.assertions.failedButOk > 0 ) in delta()
2231 ++diff.testCases.failedButOk; in delta()
6103 std::swap( assertions.failedButOk, assertions.failed ); in runCurrentTest()
6104 m_totals.assertions.failed -= assertions.failedButOk; in runCurrentTest()
[all …]
/external/catch2/examples/
D210-Evt-EventListeners.cpp95 << ws(level+1) << "- failedButOk: " << info.failedButOk << "\n"; in print()
/external/catch2/single_include/catch2/
Dcatch.hpp2463 std::size_t failedButOk = 0; member
10381 m_totals.assertions.failedButOk++; in assertionEnded()
12575 diff.failedButOk = failedButOk - other.failedButOk; in operator -()
12582 failedButOk += other.failedButOk; in operator +=()
12587 return passed + failed + failedButOk; in total()
12590 return failed == 0 && failedButOk == 0; in allPassed()
12613 else if( diff.assertions.failedButOk > 0 ) in delta()
12614 ++diff.testCases.failedButOk; in delta()
13880 .addRow(totals.testCases.failedButOk) in printTotals()
13881 .addRow(totals.assertions.failedButOk)); in printTotals()
[all …]