(self)
| 390 | self.do_exactly_equal_test(n, 0, 0) |
| 391 | |
| 392 | def test_exactly_equal_floats(self): |
| 393 | # Test that equal float values are exactly equal. |
| 394 | for x in [0.42, 1.9740, 1497.4, 23.0, 179.5, 70.0245, 36.587]: |
| 395 | self.do_exactly_equal_test(x, 0, 0) |
| 396 | |
| 397 | def test_exactly_equal_fractions(self): |
| 398 | # Test that equal Fraction values are exactly equal. |
nothing calls this directly
no test coverage detected