Add comment

This commit is contained in:
miloyip 2015-04-14 10:01:22 +08:00
parent 056125db82
commit c0ba5cffcd

View File

@ -55,6 +55,7 @@ TEST(StringBuffer, Push) {
EXPECT_EQ(5u, buffer.GetSize());
// Causes sudden expansion to make the stack's capacity equal to size
buffer.Push(65536u);
EXPECT_EQ(5u + 65536u, buffer.GetSize());
}