Empty map roundtrips correctly.
(self)
| 285 | """Roundtrip tests for ffi.Map containers.""" |
| 286 | |
| 287 | def test_empty(self) -> None: |
| 288 | """Empty map roundtrips correctly.""" |
| 289 | m = tvm_ffi.convert({}) |
| 290 | _assert_roundtrip_eq(m) |
| 291 | |
| 292 | def test_single_entry(self) -> None: |
| 293 | """Single-entry map roundtrips correctly.""" |
nothing calls this directly
no test coverage detected