Searched refs:SumOf5 (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 106 int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; } in SumOf5() function 167 int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; } in SumOf5() function in testing::gmock_more_actions_test::Foo 236 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST() 375 Invoke(&foo, &Foo::SumOf5); // NOLINT in TEST() 733 EXPECT_EQ(12345, a.Perform(std::make_tuple(&SumOf5))); in TEST()
|