| 8 | |
| 9 | |
| 10 | TEST(CPP17APITests, test_utf16to8) |
| 11 | { |
| 12 | u16string utf16string = {0x41, 0x0448, 0x65e5, 0xd834, 0xdd1e}; |
| 13 | u16string_view utf16stringview(u16string); |
| 14 | string u = utf16to8(utf16string); |
| 15 | EXPECT_EQ (u.size(), 10); |
| 16 | } |
| 17 | |
| 18 | TEST(CPP17APITests, test_utf8to16) |
| 19 | { |
nothing calls this directly
no test coverage detected