| 10817 | namespace Catch { |
| 10818 | |
| 10819 | Counts Counts::operator - ( Counts const& other ) const { |
| 10820 | Counts diff; |
| 10821 | diff.passed = passed - other.passed; |
| 10822 | diff.failed = failed - other.failed; |
| 10823 | diff.failedButOk = failedButOk - other.failedButOk; |
| 10824 | return diff; |
| 10825 | } |
| 10826 | |
| 10827 | Counts& Counts::operator += ( Counts const& other ) { |
| 10828 | passed += other.passed; |
nothing calls this directly
no outgoing calls
no test coverage detected