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 OnCancelListener.

void dismiss()

Dismisses the dialog, invoking the OnDismissListener.

Inherited methods

Public constructors

MockDialogInterface

public MockDialogInterface ()

Public methods

cancel

Added in API level 1
public void cancel ()

Cancels the dialog, invoking the OnCancelListener.

The OnDismissListener may also be called if cancellation dismisses the dialog.

dismiss

Added in API level 1
public void dismiss ()

Dismisses the dialog, invoking the OnDismissListener.