Short string roundtrips correctly.
(self)
| 160 | _assert_roundtrip_eq(tvm_ffi.convert("")) |
| 161 | |
| 162 | def test_short(self) -> None: |
| 163 | """Short string roundtrips correctly.""" |
| 164 | _assert_roundtrip_eq(tvm_ffi.convert("hello")) |
| 165 | |
| 166 | def test_long(self) -> None: |
| 167 | """Long string roundtrips correctly.""" |
nothing calls this directly
no test coverage detected