| Index: Source/wtf/text/StringBufferTest.cpp
|
| diff --git a/Source/wtf/text/StringBufferTest.cpp b/Source/wtf/text/StringBufferTest.cpp
|
| index 4a309732619128636896058c3eb1772a74b1261b..cf3775d711ca5c11867c0529795d50a0f2002ca5 100644
|
| --- a/Source/wtf/text/StringBufferTest.cpp
|
| +++ b/Source/wtf/text/StringBufferTest.cpp
|
| @@ -5,15 +5,13 @@
|
| */
|
|
|
| #include "config.h"
|
| -
|
| #include "wtf/text/StringBuffer.h"
|
|
|
| #include <gtest/gtest.h>
|
|
|
| -namespace {
|
| -
|
| +namespace WTF {
|
|
|
| -TEST(StringBuffer, Initial)
|
| +TEST(StringBufferTest, Initial)
|
| {
|
| StringBuffer<LChar> buf1;
|
| EXPECT_EQ(0u, buf1.length());
|
| @@ -28,7 +26,7 @@ TEST(StringBuffer, Initial)
|
| EXPECT_TRUE(buf3.characters());
|
| }
|
|
|
| -TEST(StringBuffer, shrink)
|
| +TEST(StringBufferTest, shrink)
|
| {
|
| StringBuffer<LChar> buf(2);
|
| EXPECT_EQ(2u, buf.length());
|
| @@ -43,4 +41,4 @@ TEST(StringBuffer, shrink)
|
| EXPECT_EQ(0u, buf.length());
|
| }
|
|
|
| -} // namespace
|
| +} // namespace WTF
|
|
|