(self)
| 2563 | ] |
| 2564 | |
| 2565 | def test_ip_isclose(self): |
| 2566 | self._setup() |
| 2567 | tests = self.some_close_tests |
| 2568 | results = self.some_close_results |
| 2569 | for (x, y), result in zip(tests, results): |
| 2570 | assert_array_equal(np.isclose(x, y), result) |
| 2571 | |
| 2572 | def tst_all_isclose(self, x, y): |
| 2573 | assert_(np.all(np.isclose(x, y)), "%s and %s not close" % (x, y)) |
nothing calls this directly
no test coverage detected