Lines Matching defs:diff
13 Counts diff;
14 diff.passed = passed - other.passed;
15 diff.failed = failed - other.failed;
16 diff.failedButOk = failedButOk - other.failedButOk;
17 return diff;
38 Totals diff;
39 diff.assertions = assertions - other.assertions;
40 diff.testCases = testCases - other.testCases;
41 return diff;
51 Totals diff = *this - prevTotals;
52 if( diff.assertions.failed > 0 )
53 ++diff.testCases.failed;
54 else if( diff.assertions.failedButOk > 0 )
55 ++diff.testCases.failedButOk;
57 ++diff.testCases.passed;
58 return diff;