Empty string roundtrips correctly.
(self)
| 156 | """Roundtrip tests for ffi.String values.""" |
| 157 | |
| 158 | def test_empty(self) -> None: |
| 159 | """Empty string roundtrips correctly.""" |
| 160 | _assert_roundtrip_eq(tvm_ffi.convert("")) |
| 161 | |
| 162 | def test_short(self) -> None: |
| 163 | """Short string roundtrips correctly.""" |
nothing calls this directly
no test coverage detected