(self)
| 107 | |
| 108 | @test_util.run_deprecated_v1 |
| 109 | def test1D(self): |
| 110 | for dtype in self.valid_dtypes: |
| 111 | x = np.arange(1, 6).reshape([5]).astype(dtype) |
| 112 | for axis in (-1, 0): |
| 113 | self._compareAll(x, axis) |
| 114 | |
| 115 | @test_util.run_deprecated_v1 |
| 116 | def test2D(self): |
nothing calls this directly
no test coverage detected