(self, expected: int, actual: int)
| 1474 | return res |
| 1475 | |
| 1476 | def has_result(self, expected: int, actual: int) -> bool: |
| 1477 | return self.results[actual][expected] is not NotChecked |
| 1478 | |
| 1479 | def no_match_for_expected(self, expected: list[int]) -> bool: |
| 1480 | for i in expected: |