Home | History | Annotate | Download | only in webrtc

Lines Matching defs:arg1

140   const std::string arg1 = "arg1";
141 EXPECT_CALL(*fake_, Method1(arg1))
146 EXPECT_EQ("Method1", fake_proxy_->Method1(arg1));
150 const std::string arg1 = "arg1";
151 EXPECT_CALL(*fake_, ConstMethod1(arg1))
156 EXPECT_EQ("ConstMethod1", fake_proxy_->ConstMethod1(arg1));
160 const std::string arg1 = "arg1";
162 EXPECT_CALL(*fake_, Method2(arg1, arg2))
167 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2));