"googlemock/vscode:/vscode.git/clone" did not exist on "0adeadd2830211f827fd2908e4621f6a4afa810c"
Commit c10a35a2 authored by zhanyong.wan's avatar zhanyong.wan
Browse files

Fixes some compatibility issues with STLport.

parent a9a59e06
......@@ -1523,14 +1523,14 @@ TEST(ExpectationSetTest, SizeWorks) {
TEST(ExpectationSetTest, IsEnumerable) {
ExpectationSet es;
EXPECT_THAT(es.begin(), Eq(es.end()));
EXPECT_TRUE(es.begin() == es.end());
es += Expectation();
ExpectationSet::const_iterator it = es.begin();
EXPECT_THAT(it, Ne(es.end()));
EXPECT_TRUE(it != es.end());
EXPECT_THAT(*it, Eq(Expectation()));
++it;
EXPECT_THAT(it, Eq(es.end()));
EXPECT_TRUE(it== es.end());
}
// Tests the .After() clause.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment