| 79 | } |
| 80 | |
| 81 | void TestLargestSmallerString(StringValue& sv, const string& expected) { |
| 82 | EXPECT_EQ(sv.LargestSmallerString(), expected); |
| 83 | sv.Smallify(); |
| 84 | EXPECT_EQ(sv.LargestSmallerString(), expected); |
| 85 | } |
| 86 | |
| 87 | void TestLeastLargerString(StringValue& sv, const string& expected) { |
| 88 | EXPECT_EQ(sv.LeastLargerString(), expected); |
nothing calls this directly
no test coverage detected