summaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock-actions_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'googlemock/test/gmock-actions_test.cc')
-rw-r--r--googlemock/test/gmock-actions_test.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/googlemock/test/gmock-actions_test.cc b/googlemock/test/gmock-actions_test.cc
index 5dd48460..c8b62fc2 100644
--- a/googlemock/test/gmock-actions_test.cc
+++ b/googlemock/test/gmock-actions_test.cc
@@ -1539,9 +1539,10 @@ TEST(FunctorActionTest, TypeConversion) {
TEST(FunctorActionTest, UnusedArguments) {
// Verify that users can ignore uninteresting arguments.
- Action<int(int, std::unique_ptr<int>, const int&)> a =
+ Action<int(int, double y, const int&)> a =
[](int i, Unused, Unused) { return 2 * i; };
- EXPECT_EQ(6, a.Perform(make_tuple(3, UniqueInt(7), 9)));
+ tuple<int, double, const int&> dummy = make_tuple(3, 7.3, 9);
+ EXPECT_EQ(6, a.Perform(dummy));
}
// Test that basic built-in actions work with move-only arguments.
OpenPOWER on IntegriCloud