(self)
| 219 | self._testArray(None, None, "null") |
| 220 | |
| 221 | def testDescribedEmptyArray(self): |
| 222 | self._testArray("long", 0, "null") |
| 223 | |
| 224 | def _test(self, dtype, *values, **kwargs): |
| 225 | eq=kwargs.get("eq", lambda x, y: x == y) |
nothing calls this directly
no test coverage detected