(self, a, b)
| 22 | self._assert_func(a, b) |
| 23 | |
| 24 | def _test_not_equal(self, a, b): |
| 25 | with assert_raises(AssertionError): |
| 26 | self._assert_func(a, b) |
| 27 | |
| 28 | def test_array_rank1_eq(self): |
| 29 | """Test two equal array of rank 1 are found equal.""" |
no test coverage detected