| 12333 | namespace Catch { |
| 12334 | |
| 12335 | Counts Counts::operator - ( Counts const& other ) const { |
| 12336 | Counts diff; |
| 12337 | diff.passed = passed - other.passed; |
| 12338 | diff.failed = failed - other.failed; |
| 12339 | diff.failedButOk = failedButOk - other.failedButOk; |
| 12340 | return diff; |
| 12341 | } |
| 12342 | |
| 12343 | Counts& Counts::operator += ( Counts const& other ) { |
| 12344 | passed += other.passed; |
nothing calls this directly
no outgoing calls
no test coverage detected