()
| 6 | ) |
| 7 | |
| 8 | func Run() { |
| 9 | test.TakeBasic("latin utf16") |
| 10 | assertEqual(test.ReturnUnicode(), "🚀🚀🚀 𠈄𓀀") |
| 11 | assertEqual(test.ReturnEmpty(), "") |
| 12 | assertEqual(test.Roundtrip("🚀🚀🚀 𠈄𓀀"), "🚀🚀🚀 𠈄𓀀") |
| 13 | } |
| 14 | |
| 15 | func assertEqual(a string, b string) { |
| 16 | if a != b { |
nothing calls this directly
no test coverage detected