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 949827f6f1..5eba72eea7 100644 --- a/core/fxcrt/widestring_unittest.cpp +++ b/core/fxcrt/widestring_unittest.cpp @@ -10,6 +10,8 @@ #include "core/fxcrt/fx_string.h" #include "testing/gtest/include/gtest/gtest.h" +namespace fxcrt { + TEST(WideString, ElementAccess) { const WideString abc(L"abc"); EXPECT_EQ(L'a', abc[0]); @@ -1603,3 +1605,5 @@ TEST(WideStringView, WideOStreamOverload) { EXPECT_EQ(L"abcdef", stream.str()); } } + +} // namespace fxcrt |