(self, x, y)
| 2573 | assert_(np.all(np.isclose(x, y)), "%s and %s not close" % (x, y)) |
| 2574 | |
| 2575 | def tst_none_isclose(self, x, y): |
| 2576 | msg = "%s and %s shouldn't be close" |
| 2577 | assert_(not np.any(np.isclose(x, y)), msg % (x, y)) |
| 2578 | |
| 2579 | def tst_isclose_allclose(self, x, y): |
| 2580 | msg = "isclose.all() and allclose aren't same for %s and %s" |
no test coverage detected