summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_bytestring_unittest.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-04-07 16:35:13 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-07 23:56:10 +0000
commit746c28772e01675096800d8853aae33f94ed3d55 (patch)
tree2ce47901d8028f4e73db474ed6a4a36768463f14 /core/fxcrt/cfx_bytestring_unittest.cpp
parentc4a2b7518949df00651aa3513c93079f1968441e (diff)
downloadpdfium-746c28772e01675096800d8853aae33f94ed3d55.tar.xz
Create initializer-list ctor for strings.
Also use safe arithmetic for two-arg ctor. Change-Id: I5d541d9b2d5fe5b939f4cc8c22cf034f5cb01176 Reviewed-on: https://pdfium-review.googlesource.com/3955 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_bytestring_unittest.cpp')
-rw-r--r--core/fxcrt/cfx_bytestring_unittest.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/fxcrt/cfx_bytestring_unittest.cpp b/core/fxcrt/cfx_bytestring_unittest.cpp
index 4f2691c404..3b679a086c 100644
--- a/core/fxcrt/cfx_bytestring_unittest.cpp
+++ b/core/fxcrt/cfx_bytestring_unittest.cpp
@@ -1089,3 +1089,10 @@ TEST(fxcrt, EmptyByteString) {
const char* cstr = empty_str.c_str();
EXPECT_EQ(0, FXSYS_strlen(cstr));
}
+
+TEST(fxcrt, ByteStringInitializerList) {
+ CFX_ByteString many_str({"clams", " and ", "oysters"});
+ EXPECT_EQ("clams and oysters", many_str);
+ many_str = {"fish", " and ", "chips", " and ", "soda"};
+ EXPECT_EQ("fish and chips and soda", many_str);
+}