• Home
  • Raw
  • Download

Lines Matching refs:pluralise

369     struct pluralise {  struct
370 pluralise( std::size_t count, std::string const& label );
372 friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser );
5324 Catch::cout() << pluralise( matchedTests, "test case" ) << "\n" << std::endl; in listTests()
5326 Catch::cout() << pluralise( matchedTests, "matching test case" ) << "\n" << std::endl; in listTests()
5404 Catch::cout() << pluralise( tagCounts.size(), "tag" ) << "\n" << std::endl; in listTags()
7776 pluralise::pluralise( std::size_t count, std::string const& label ) in pluralise() function in Catch::pluralise
7781 std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ) { in operator <<()
9814 << pluralise( totals.assertions.passed, "assertion" ) << " in " in printTotals()
9815 << pluralise( totals.testCases.passed, "test case" ) << ")" in printTotals()
10116 stream << " with " << pluralise( N, "message" ) << ":"; in printRemainingMessages()
10162 << pluralise( totals.testCases.failed, "test case" ) << ", " in printTotals()
10164 pluralise( totals.assertions.failed, "assertion" ) << "."; in printTotals()
10169 << pluralise( totals.testCases.total(), "test case" ) in printTotals()
10175 "Failed " << pluralise( totals.testCases.failed, "test case" ) << ", " in printTotals()
10176 "failed " << pluralise( totals.assertions.failed, "assertion" ) << "."; in printTotals()
10182 << pluralise( totals.testCases.passed, "test case" ) << in printTotals()
10183 " with " << pluralise( totals.assertions.passed, "assertion" ) << "."; in printTotals()