(self)
| 245 | |
| 246 | @test_util.run_deprecated_v1 |
| 247 | def test3D(self): |
| 248 | for dtype in self.valid_dtypes: |
| 249 | x = np.arange(1, 21).reshape([2, 2, 5]).astype(dtype) |
| 250 | for axis in (-3, -2, -1, 0, 1, 2): |
| 251 | self._compareAll(x, axis) |
| 252 | |
| 253 | @test_util.run_deprecated_v1 |
| 254 | def test6D(self): |
nothing calls this directly
no test coverage detected