osx pizzas, cont

pull/1558/head
Gennadiy Civil 7 years ago
parent b15be9a819
commit f15fd9610b
  1. 3
      googlemock/test/gmock-generated-actions_test.cc

@ -754,7 +754,8 @@ TEST(ActionPMacroTest, CanReferenceArgumentAndParameterTypes) {
TEST(ActionPMacroTest, WorksInCompatibleMockFunction) {
Action<std::string(const std::string& s)> a1 = Plus("tail");
const std::string re = "re";
EXPECT_EQ("retail", a1.Perform(make_tuple(re)));
tuple<const std::string> dummy = make_tuple(re);
EXPECT_EQ("retail", a1.Perform(dummy));
}
// Tests that we can use ACTION*() to define actions overloaded on the

Loading…
Cancel
Save