Improve coverage of Stack

This commit is contained in:
miloyip 2015-04-14 10:00:53 +08:00
parent bff588e665
commit 056125db82

View File

@ -54,6 +54,9 @@ TEST(StringBuffer, Push) {
buffer.Push(5);
EXPECT_EQ(5u, buffer.GetSize());
buffer.Push(65536u);
EXPECT_EQ(5u + 65536u, buffer.GetSize());
}
TEST(StringBuffer, Pop) {