Home
last modified time | relevance | path

Searched refs:WithoutArgs (Results 1 – 11 of 11) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_transport_curl_unittest.cc22 using testing::WithoutArgs;
285 WithoutArgs(Invoke(do_socket_action)), in TEST_F()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-more-actions.h118 WithoutArgs(const InnerAction& action) { in WithoutArgs() function
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-more-actions.h135 WithoutArgs(const InnerAction& action) { in WithoutArgs() function
/external/googletest/googlemock/test/
Dgmock_link_test.h183 using testing::WithoutArgs;
379 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(WithoutArgs(Return())); in TEST()
Dgmock-more-actions_test.cc63 using testing::WithoutArgs;
475 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
Dgmock-actions_test.cc1133 Action<Base*(double)> a = testing::WithoutArgs(inner); in TEST()
1444 a = testing::WithoutArgs([]() { return 7; }); in TEST()
/external/google-breakpad/src/testing/test/
Dgmock_link_test.h178 using testing::WithoutArgs;
374 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(WithoutArgs(Return())); in TEST()
Dgmock-more-actions_test.cc68 using testing::WithoutArgs;
473 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h1033 WithoutArgs(InnerAction&& action) {
/external/googletest/googlemock/docs/
DCheatSheet.md447 |`WithoutArgs(a)` |Perform action `a` without any arguments. …
DCookBook.md2104 * `WithoutArgs(action)` when the inner `action` takes _no_ argument, and
2108 sugar for `WithoutArgs(Invoke(...))`.
2362 Many built-in actions (`WithArgs`, `WithoutArgs`,`DeleteArg`, `SaveArg`, ...)