Implements .With() as a synonym of .WithArguments(); implements AllArgs(m) as a synonym of m; relies on gtest-port to #include tuple; fixes a compatibility with Symbian.
This commit is contained in:
@@ -457,7 +457,7 @@ TEST(ElementsAreTest, WorksWithNativeArrayPassedAsPointerAndSize) {
|
||||
|
||||
NativeArrayPassedAsPointerAndSize helper;
|
||||
EXPECT_CALL(helper, Helper(_, _))
|
||||
.WithArguments(ElementsAre(0, 1));
|
||||
.With(ElementsAre(0, 1));
|
||||
helper.Helper(array, 2);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user