| 7 | namespace ValdiTest { |
| 8 | |
| 9 | SmallVector<uint32_t, 32> makeUTF32String(const char* str) { |
| 10 | auto result = utf8ToUtf32(str, strlen(str)); |
| 11 | return SmallVector<uint32_t, 32>(result.first, result.first + result.second); |
| 12 | } |
| 13 | |
| 14 | TEST(Emoji, canDetectSingleEmoji) { |
| 15 | const auto* emojiTrie = getEmojiUnicodeTrie(); |