Test string literals

This commit is contained in:
Nemanja Trifunovic 2021-06-06 11:09:04 -04:00
parent 4e11497669
commit b85efd66a7
2 changed files with 12 additions and 0 deletions

View file

@ -51,6 +51,9 @@ TEST(CPP11APITests, test_utf8to16)
EXPECT_EQ (utf16result.size(), 4);
EXPECT_EQ (utf16result[2], 0xd834);
EXPECT_EQ (utf16result[3], 0xdd1e);
// Just to make sure it compiles with string literals
utf8to16(u8"simple");
utf8to16("simple");
}
TEST(CPP11APITests, test_utf32to8)

View file

@ -76,4 +76,13 @@ TEST(CPP17APITests, test_starts_with_bom)
bool no_bbom = starts_with_bom(threechars);
EXPECT_FALSE (no_bbom);
}
TEST(CPP17APITests, string_class_and_literals)
{
const char* twochars = u8"ab";
EXPECT_TRUE (is_valid(twochars));
const string two_chars_string(twochars);
EXPECT_TRUE (is_valid(two_chars_string));
}
#endif // C++ 11 or later