Home
last modified time | relevance | path

Searched refs:SumOf4 (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc102 int SumOf4(int a, int b, int c, int d) { return a + b + c + d; } in SumOf4() function
161 int SumOf4(int a, int b, int c, int d) const { in SumOf4() function in testing::gmock_more_actions_test::Foo
230 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST()
328 Action<long(int, short, char, bool)> a = Invoke(SumOf4); // NOLINT in TEST()
367 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT in TEST()
443 Invoke(&foo, &Foo::SumOf4); in TEST()
H A Dgmock-actions_test.cc1215 int SumOf4(int a, int b, int c, int d) { return a + b + c + d; } in SumOf4() function
1538 WithArgs<1, 1, 1, 1>(Invoke(SumOf4)); in TEST()