Searched refs:a_map (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-function-mocker_test.cc | 106 virtual int TypeWithComma(const std::map<int, std::string>& a_map) = 0; 393 const std::map<int, std::string> a_map; in TYPED_TEST() local 394 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma()).WillOnce(Return(a_map)); in TYPED_TEST() 395 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma(42)).WillOnce(Return(a_map)); in TYPED_TEST() 397 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma()); in TYPED_TEST() 398 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma(42)); in TYPED_TEST() 446 const std::map<int, std::string> a_map; in TYPED_TEST() local 447 EXPECT_CALL(this->mock_foo_, CTReturnTypeWithComma()).WillOnce(Return(a_map)); in TYPED_TEST() 449 EXPECT_EQ(a_map, this->mock_foo_.CTReturnTypeWithComma()); in TYPED_TEST() 615 const std::map<int, int> a_map; in TYPED_TEST() local [all …]
|