(self)
| 169 | self._compare(x, axis, exclusive, reverse) |
| 170 | |
| 171 | def testEmpty(self): |
| 172 | for dtype in self.valid_dtypes: |
| 173 | x = np.zeros([0]).astype(dtype) |
| 174 | for axis in (-1, 0): |
| 175 | self._compareAll(x, axis) |
| 176 | |
| 177 | def testAxisType(self): |
| 178 | for dtype in self.valid_dtypes: |
nothing calls this directly
no test coverage detected