Lines Matching refs:a_map
109 virtual int TypeWithComma(const std::map<int, std::string>& a_map) = 0;
401 const std::map<int, std::string> a_map;
402 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma()).WillOnce(Return(a_map));
403 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma(42)).WillOnce(Return(a_map));
405 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma());
406 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma(42));
454 const std::map<int, std::string> a_map;
455 EXPECT_CALL(this->mock_foo_, CTReturnTypeWithComma()).WillOnce(Return(a_map));
457 EXPECT_EQ(a_map, this->mock_foo_.CTReturnTypeWithComma());
623 const std::map<int, int> a_map;
624 EXPECT_CALL(mock, ReturnTypeWithComma()).WillOnce(Return(a_map));
625 EXPECT_CALL(mock, ReturnTypeWithComma(1)).WillOnce(Return(a_map));
627 EXPECT_EQ(a_map, mock.ReturnTypeWithComma());
628 EXPECT_EQ(a_map, mock.ReturnTypeWithComma(1));