Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp

Issue 2373983006: reflow comments in wtf/text (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp
diff --git a/third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp b/third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp
index 7b13bc25f9d3f6e37fb57cf2d96b5d5898e6fbf8..07eb73ca7b949c5e99e4c05d92a68b43460f5598 100644
--- a/third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp
+++ b/third_party/WebKit/Source/wtf/text/StringBuilderTest.cpp
@@ -113,8 +113,8 @@ TEST(StringBuilderTest, Append) {
// Test appending UChar32 characters to StringBuilder.
StringBuilder builderForUChar32Append;
UChar32 frakturAChar = 0x1D504;
- builderForUChar32Append.append(
- frakturAChar); // The fraktur A is not in the BMP, so it's two UTF-16 code units long.
+ // The fraktur A is not in the BMP, so it's two UTF-16 code units long.
+ builderForUChar32Append.append(frakturAChar);
EXPECT_FALSE(builderForUChar32Append.is8Bit());
EXPECT_EQ(2U, builderForUChar32Append.length());
builderForUChar32Append.append(static_cast<UChar32>('A'));
@@ -145,18 +145,21 @@ TEST(StringBuilderTest, ToString) {
EXPECT_EQ(String("0123456789"), string);
EXPECT_EQ(string.impl(), builder.toString().impl());
- // Changing the StringBuilder should not affect the original result of toString().
+ // Changing the StringBuilder should not affect the original result of
+ // toString().
builder.append("abcdefghijklmnopqrstuvwxyz");
EXPECT_EQ(String("0123456789"), string);
- // Changing the StringBuilder should not affect the original result of toString() in case the capacity is not changed.
+ // Changing the StringBuilder should not affect the original result of
+ // toString() in case the capacity is not changed.
builder.reserveCapacity(200);
string = builder.toString();
EXPECT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
builder.append("ABC");
EXPECT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
- // Changing the original result of toString() should not affect the content of the StringBuilder.
+ // Changing the original result of toString() should not affect the content of
+ // the StringBuilder.
String string1 = builder.toString();
EXPECT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), string1);
string1.append("DEF");
@@ -164,7 +167,8 @@ TEST(StringBuilderTest, ToString) {
builder.toString());
EXPECT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABCDEF"), string1);
- // Resizing the StringBuilder should not affect the original result of toString().
+ // Resizing the StringBuilder should not affect the original result of
+ // toString().
string1 = builder.toString();
builder.resize(10);
builder.append("###");

Powered by Google App Engine
This is Rietveld 408576698