(x, y)
| 555 | # Make sure that test cases are sorted correctly if sorted without |
| 556 | # key function. But using a key function is preferred for speed. |
| 557 | def cmp(x, y): |
| 558 | return (x > y) - (x < y) |
| 559 | return cmp( |
| 560 | (self.suite.name, self.name, self.variant), |
| 561 | (other.suite.name, other.name, other.variant) |
no outgoing calls
no test coverage detected