Long string roundtrips correctly.
(self)
| 164 | _assert_roundtrip_eq(tvm_ffi.convert("hello")) |
| 165 | |
| 166 | def test_long(self) -> None: |
| 167 | """Long string roundtrips correctly.""" |
| 168 | _assert_roundtrip_eq(tvm_ffi.convert("x" * 1000)) |
| 169 | |
| 170 | def test_special_chars(self) -> None: |
| 171 | """String with special characters roundtrips correctly.""" |
nothing calls this directly
no test coverage detected