Home | History | Annotate | Download | only in test

Lines Matching refs:DoDefault

65 using testing::DoDefault;
689 // Tests that DoDefault() does the default action for the mock method.
708 // Tests that DoDefault() returns the built-in default value for the
713 .WillOnce(DoDefault());
717 // Tests that DoDefault() throws (when exceptions are enabled) or aborts
722 .WillRepeatedly(DoDefault());
732 // Tests that using DoDefault() inside a composite action leads to a
741 DoDefault()));
752 // Tests that DoDefault() returns the default value set by
758 .WillOnce(DoDefault());
763 // Tests that DoDefault() does the action specified by ON_CALL().
769 .WillOnce(DoDefault());
773 // Tests that using DoDefault() in ON_CALL() leads to a run-time failure.
778 .WillByDefault(DoDefault());
779 }, "DoDefault() cannot be used in ON_CALL()");