(self)
| 190 | self._compareAll(x, axis) |
| 191 | |
| 192 | def test2D(self): |
| 193 | for dtype in self.valid_dtypes: |
| 194 | x = np.arange(1, 11).reshape([2, 5]).astype(dtype) |
| 195 | for axis in (-2, -1, 0, 1): |
| 196 | self._compareAll(x, axis) |
| 197 | |
| 198 | def test3D(self): |
| 199 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected