(self, x, y)
| 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)) |
| 2574 | |
| 2575 | def tst_none_isclose(self, x, y): |
| 2576 | msg = "%s and %s shouldn't be close" |
no test coverage detected