(self)
| 215 | |
| 216 | @test_util.run_deprecated_v1 |
| 217 | def testEmpty(self): |
| 218 | for dtype in self.valid_dtypes: |
| 219 | x = np.zeros([0]).astype(dtype) |
| 220 | for axis in (-1, 0): |
| 221 | self._compareAll(x, axis) |
| 222 | |
| 223 | @test_util.run_deprecated_v1 |
| 224 | def testAxisType(self): |
nothing calls this directly
no test coverage detected