Home | History | Annotate | Download | only in test

Lines Matching refs:DoDefault

61 using testing::DoDefault;
613 // Tests that DoDefault() does the default action for the mock method.
628 // Tests that DoDefault() returns the built-in default value for the
633 .WillOnce(DoDefault());
637 // Tests that DoDefault() aborts the process when there is no built-in
642 .WillRepeatedly(DoDefault());
648 // Tests that using DoDefault() inside a composite action leads to a
657 DoDefault()));
668 // Tests that DoDefault() returns the default value set by
674 .WillOnce(DoDefault());
679 // Tests that DoDefault() does the action specified by ON_CALL().
685 .WillOnce(DoDefault());
689 // Tests that using DoDefault() in ON_CALL() leads to a run-time failure.
694 .WillByDefault(DoDefault());
695 }, "DoDefault() cannot be used in ON_CALL()");