| 11 | } |
| 12 | |
| 13 | void exports::runner::Run() { |
| 14 | test::strings::to_test::TakeBasic("latin utf16"); |
| 15 | |
| 16 | auto str2 = test::strings::to_test::ReturnUnicode(); |
| 17 | assert_str(str2, "🚀🚀🚀 𠈄𓀀"); |
| 18 | |
| 19 | auto str3 = test::strings::to_test::ReturnEmpty(); |
| 20 | assert_str(str3, ""); |
| 21 | |
| 22 | auto str5 = test::strings::to_test::Roundtrip("🚀🚀🚀 𠈄𓀀"); |
| 23 | assert_str(str5, "🚀🚀🚀 𠈄𓀀"); |
| 24 | } |
nothing calls this directly
no test coverage detected