(self)
| 238 | |
| 239 | @test_util.run_deprecated_v1 |
| 240 | def test2D(self): |
| 241 | for dtype in self.valid_dtypes: |
| 242 | x = np.arange(1, 11).reshape([2, 5]).astype(dtype) |
| 243 | for axis in (-2, -1, 0, 1): |
| 244 | self._compareAll(x, axis) |
| 245 | |
| 246 | @test_util.run_deprecated_v1 |
| 247 | def test3D(self): |
nothing calls this directly
no test coverage detected