(self)
| 231 | |
| 232 | @test_util.run_deprecated_v1 |
| 233 | def test1D(self): |
| 234 | for dtype in self.valid_dtypes: |
| 235 | x = np.arange(1, 6).reshape([5]).astype(dtype) |
| 236 | for axis in (-1, 0): |
| 237 | self._compareAll(x, axis) |
| 238 | |
| 239 | @test_util.run_deprecated_v1 |
| 240 | def test2D(self): |
nothing calls this directly
no test coverage detected