Lines Matching refs:pluralise

3170     struct pluralise {  struct
3171 pluralise( std::size_t count, std::string const& label );
3173 friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser );
11112 Catch::cout() << pluralise( matchedTestCases.size(), "test case" ) << '\n' << std::endl; in listTests()
11114 … Catch::cout() << pluralise( matchedTestCases.size(), "matching test case" ) << '\n' << std::endl; in listTests()
11187 Catch::cout() << pluralise( tagCounts.size(), "tag" ) << '\n' << std::endl; in listTags()
13652 pluralise::pluralise( std::size_t count, std::string const& label ) in pluralise() function in Catch::pluralise
13657 std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ) { in operator <<()
15527 << pluralise(totals.testCases.failed, "test case") << ", " in printTotals()
15529 pluralise(totals.assertions.failed, "assertion") << '.'; in printTotals()
15533 << pluralise(totals.testCases.total(), "test case") in printTotals()
15538 "Failed " << pluralise(totals.testCases.failed, "test case") << ", " in printTotals()
15539 "failed " << pluralise(totals.assertions.failed, "assertion") << '.'; in printTotals()
15544 << pluralise(totals.testCases.passed, "test case") << in printTotals()
15545 " with " << pluralise(totals.assertions.passed, "assertion") << '.'; in printTotals()
15692 stream << " with " << pluralise(N, "message") << ':'; in printRemainingMessages()
16372 << pluralise(totals.assertions.passed, "assertion") << " in " in printTotals()
16373 << pluralise(totals.testCases.passed, "test case") << ')' in printTotals()