mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-04 13:05:06 +00:00
Test string literals
This commit is contained in:
parent
4e11497669
commit
b85efd66a7
2 changed files with 12 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue