(self)
| 1992 | self.check_set_op_does_not_crash(lambda a, b: a >= b) |
| 1993 | |
| 1994 | def test_and_with_mutation(self): |
| 1995 | self.check_set_op_does_not_crash(lambda a, b: a & b) |
| 1996 | |
| 1997 | def test_or_with_mutation(self): |
| 1998 | self.check_set_op_does_not_crash(lambda a, b: a | b) |
nothing calls this directly
no test coverage detected