(self)
| 2585 | assert_array_equal(np.isclose(x, y).all(), np.allclose(x, y), msg % (x, y)) |
| 2586 | |
| 2587 | def test_ip_all_isclose(self): |
| 2588 | self._setup() |
| 2589 | for (x, y) in self.all_close_tests: |
| 2590 | self.tst_all_isclose(x, y) |
| 2591 | |
| 2592 | def test_ip_none_isclose(self): |
| 2593 | self._setup() |
nothing calls this directly
no test coverage detected