Searched refs:WithoutArgs (Results 1 – 11 of 11) sorted by relevance
22 using testing::WithoutArgs;285 WithoutArgs(Invoke(do_socket_action)), in TEST_F()
118 WithoutArgs(const InnerAction& action) { in WithoutArgs() function
135 WithoutArgs(const InnerAction& action) { in WithoutArgs() function
183 using testing::WithoutArgs;379 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(WithoutArgs(Return())); in TEST()
63 using testing::WithoutArgs;475 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
1133 Action<Base*(double)> a = testing::WithoutArgs(inner); in TEST()1444 a = testing::WithoutArgs([]() { return 7; }); in TEST()
178 using testing::WithoutArgs;374 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(WithoutArgs(Return())); in TEST()
68 using testing::WithoutArgs;473 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT in TEST()
1033 WithoutArgs(InnerAction&& action) {
447 |`WithoutArgs(a)` |Perform action `a` without any arguments. …
2104 * `WithoutArgs(action)` when the inner `action` takes _no_ argument, and2108 sugar for `WithoutArgs(Invoke(...))`.2362 Many built-in actions (`WithArgs`, `WithoutArgs`,`DeleteArg`, `SaveArg`, ...)