Unicode string roundtrips correctly.
(self)
| 172 | _assert_roundtrip_eq(tvm_ffi.convert('hello\nworld\t"quotes"')) |
| 173 | |
| 174 | def test_unicode(self) -> None: |
| 175 | """Unicode string roundtrips correctly.""" |
| 176 | _assert_roundtrip_eq(tvm_ffi.convert("hello 世界")) |
| 177 | |
| 178 | |
| 179 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected