Home | History | Annotate | Download | only in test

Lines Matching refs:InvokeHelper

223 class InvokeHelper {
321 InvokeHelper test_invoke_helper;
324 .WillOnce(Invoke(&InvokeHelper::StaticVoidFromString))
325 .WillOnce(Invoke(&test_invoke_helper, &InvokeHelper::VoidFromString));
333 InvokeHelper test_invoke_helper;
336 .WillOnce(InvokeWithoutArgs(&InvokeHelper::StaticVoidFromVoid))
338 &InvokeHelper::VoidFromVoid));
349 mock.VoidFromFunc(InvokeHelper::StaticVoidFromString);
357 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString)));
366 .WillOnce(WithArgs<0>(Invoke(&InvokeHelper::StaticVoidFromString)));
627 Matcher<char*> m = ResultOf(&InvokeHelper::StaticIntFromString, Eq(1));
641 Matcher<const char*> m = Truly(&InvokeHelper::StaticBoolFromString);