Empty dict roundtrips correctly.
(self)
| 333 | """Roundtrip tests for ffi.Dict containers.""" |
| 334 | |
| 335 | def test_empty(self) -> None: |
| 336 | """Empty dict roundtrips correctly.""" |
| 337 | d = tvm_ffi.Dict({}) |
| 338 | _assert_roundtrip_eq(d) |
| 339 | |
| 340 | def test_single_entry(self) -> None: |
| 341 | """Single-entry dict roundtrips correctly.""" |
nothing calls this directly
no test coverage detected