Searched defs:Counts (Results 1 – 1 of 1) sorted by relevance
2193 struct Counts { struct2194 Counts() : passed( 0 ), failed( 0 ), failedButOk( 0 ) {} in Counts() function2196 Counts operator - ( Counts const& other ) const { in operator -()2203 Counts& operator += ( Counts const& other ) { in operator +=()2210 std::size_t total() const { in total()2213 bool allPassed() const { in allPassed()2216 bool allOk() const { in allOk()2220 std::size_t passed;2221 std::size_t failed;2222 std::size_t failedButOk;