MCPcopy Create free account
hub / github.com/numpy/numpy / test_ip_isclose_allclose

Method test_ip_isclose_allclose

numpy/core/tests/test_numeric.py:2597–2602  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2595 self.tst_none_isclose(x, y)
2596
2597 def test_ip_isclose_allclose(self):
2598 self._setup()
2599 tests = (self.all_close_tests + self.none_close_tests +
2600 self.some_close_tests)
2601 for (x, y) in tests:
2602 self.tst_isclose_allclose(x, y)
2603
2604 def test_equal_nan(self):
2605 assert_array_equal(np.isclose(np.nan, np.nan, equal_nan=True), [True])

Callers

nothing calls this directly

Calls 2

_setupMethod · 0.95
tst_isclose_allcloseMethod · 0.95

Tested by

no test coverage detected