Searched refs:failedRatio (Results 1 – 3 of 3) sorted by relevance
/external/catch2/include/reporters/ |
D | catch_reporter_console.cpp | 602 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() local 605 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 606 findMax(failedRatio, failedButOkRatio, passedRatio)++; in printTotalsDivider() 607 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 608 findMax(failedRatio, failedButOkRatio, passedRatio)--; in printTotalsDivider() 610 stream << Colour(Colour::Error) << std::string(failedRatio, '='); in printTotalsDivider()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 9872 … std::size_t failedRatio = makeRatio( totals.testCases.failed, totals.testCases.total() ); in printTotalsDivider() local 9875 while( failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH-1 ) in printTotalsDivider() 9876 findMax( failedRatio, failedButOkRatio, passedRatio )++; in printTotalsDivider() 9877 while( failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH-1 ) in printTotalsDivider() 9878 findMax( failedRatio, failedButOkRatio, passedRatio )--; in printTotalsDivider() 9880 stream << Colour( Colour::Error ) << std::string( failedRatio, '=' ); in printTotalsDivider()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 13907 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() local 13910 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 13911 findMax(failedRatio, failedButOkRatio, passedRatio)++; in printTotalsDivider() 13912 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 13913 findMax(failedRatio, failedButOkRatio, passedRatio)--; in printTotalsDivider() 13915 stream << Colour(Colour::Error) << std::string(failedRatio, '='); in printTotalsDivider()
|