(self)
| 882 | assert_approx_equal(*args, **kwargs) |
| 883 | |
| 884 | def test_simple_0d_arrays(self): |
| 885 | x = np.array(1234.22) |
| 886 | y = np.array(1234.23) |
| 887 | |
| 888 | self._assert_func(x, y, significant=5) |
| 889 | self._assert_func(x, y, significant=6) |
| 890 | assert_raises(AssertionError, |
| 891 | lambda: self._assert_func(x, y, significant=7)) |
| 892 | |
| 893 | def test_simple_items(self): |
| 894 | x = 1234.22 |
nothing calls this directly
no test coverage detected