MockDialogInterface
public
class
MockDialogInterface
extends Object
implements
DialogInterface
java.lang.Object | |
↳ | android.test.mock.MockDialogInterface |
This class was deprecated
in API level 24.
Use a mocking framework like Mockito.
New tests should be written using the
Android Testing Support Library.
A mock DialogInterface
class. All methods are non-functional and throw
UnsupportedOperationException
. Override it to provide the operations that you
need.
Summary
Inherited constants |
---|
Public constructors | |
---|---|
MockDialogInterface()
|
Public methods | |
---|---|
void
|
cancel()
Cancels the dialog, invoking the |
void
|
dismiss()
Dismisses the dialog, invoking the |
Inherited methods | |
---|---|
Public constructors
MockDialogInterface
public MockDialogInterface ()
Public methods
cancel
public void cancel ()
Cancels the dialog, invoking the OnCancelListener
.
The OnDismissListener
may also be called if cancellation
dismisses the dialog.
dismiss
public void dismiss ()
Dismisses the dialog, invoking the OnDismissListener
.