()
| 52 | assert False, f"Expected {typ.__name__} but got no exception" |
| 53 | |
| 54 | def assertDomainError() -> Any: |
| 55 | return assertRaises(ValueError, "math domain error") |
| 56 | |
| 57 | def assertMathRangeError() -> Any: |
| 58 | return assertRaises(OverflowError, "math range error") |
nothing calls this directly
no test coverage detected
searching dependent graphs…