(self)
| 509 | self.do_approx_equal_abs_test(-d, delta) |
| 510 | |
| 511 | def test_cross_zero(self): |
| 512 | # Test for the case of the two values having opposite signs. |
| 513 | self.assertTrue(approx_equal(1e-5, -1e-5, tol=1e-4, rel=0)) |
| 514 | |
| 515 | # === Relative error tests === |
| 516 |
nothing calls this directly
no test coverage detected