diff options
Diffstat (limited to 'core/fxcrt/widestring_unittest.cpp')
-rw-r--r-- | core/fxcrt/widestring_unittest.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/fxcrt/widestring_unittest.cpp b/core/fxcrt/widestring_unittest.cpp index ad91249c8e..ec0a55fc1e 100644 --- a/core/fxcrt/widestring_unittest.cpp +++ b/core/fxcrt/widestring_unittest.cpp @@ -21,6 +21,10 @@ TEST(WideString, ElementAccess) { EXPECT_DEATH({ abc[4]; }, ".*"); #endif + pdfium::span<const wchar_t> abc_span = abc.AsSpan(); + EXPECT_EQ(3u, abc_span.size()); + EXPECT_EQ(0, wmemcmp(abc_span.data(), L"abc", 3)); + WideString mutable_abc = abc; EXPECT_EQ(abc.c_str(), mutable_abc.c_str()); EXPECT_EQ(L'a', mutable_abc[0]); |