Empty array roundtrips correctly.
(self)
| 235 | """Roundtrip tests for ffi.Array containers.""" |
| 236 | |
| 237 | def test_empty(self) -> None: |
| 238 | """Empty array roundtrips correctly.""" |
| 239 | arr = tvm_ffi.convert([]) |
| 240 | _assert_roundtrip_eq(arr) |
| 241 | |
| 242 | def test_single_element(self) -> None: |
| 243 | """Single-element array roundtrips correctly.""" |
nothing calls this directly
no test coverage detected