Most visited

Recently visited

Added in API level 1
Deprecated since API level 24

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

From interface android.content.DialogInterface

Public constructors

MockDialogInterface()

Public methods

void cancel()
void dismiss()

Inherited methods

From class java.lang.Object
From interface android.content.DialogInterface

Public constructors

MockDialogInterface

Added in API level 1
MockDialogInterface ()

Public methods

cancel

Added in API level 1
void cancel ()

dismiss

Added in API level 1
void dismiss ()

Hooray!