Test two equal array of rank 1 are found equal.
(self)
| 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.""" |
| 30 | a = np.array([1, 2]) |
| 31 | b = np.array([1, 2]) |
| 32 | |
| 33 | self._test_equal(a, b) |
| 34 | |
| 35 | def test_array_rank1_noteq(self): |
| 36 | """Test two different array of rank 1 are found not equal.""" |
nothing calls this directly
no test coverage detected