ActivityTestCase
public
abstract
class
ActivityTestCase
extends InstrumentationTestCase
java.lang.Object | ||
↳ | android.test.InstrumentationTestCase | |
↳ | android.test.ActivityTestCase |
This class was deprecated
in API level 24.
New tests should be written using the
Android Testing Support Library.
This is common code used to support Activity test cases. For more useful classes, please see
ActivityUnitTestCase
and
ActivityInstrumentationTestCase
.
Summary
Public constructors | |
---|---|
ActivityTestCase()
|
Protected methods | |
---|---|
Activity
|
getActivity()
|
void
|
scrubClass(Class<?> testCaseClass)
This function is called by various TestCase implementations, at tearDown() time, in order to scrub out any class variables. |
void
|
setActivity(Activity testActivity)
Set the activity under test. |
Inherited methods | |
---|---|
Public constructors
ActivityTestCase
public ActivityTestCase ()
Protected methods
getActivity
protected Activity getActivity ()
Returns | |
---|---|
Activity |
Returns the activity under test. |
scrubClass
protected void scrubClass (Class<?> testCaseClass)
This function is called by various TestCase implementations, at tearDown() time, in order to scrub out any class variables. This protects against memory leaks in the case where a test case creates a non-static inner class (thus referencing the test case) and gives it to someone else to hold onto.
Parameters | |
---|---|
testCaseClass |
Class : The class of the derived TestCase implementation. |
Throws | |
---|---|
|
java.lang.IllegalAccessException |
IllegalAccessException |
setActivity
protected void setActivity (Activity testActivity)
Set the activity under test.
Parameters | |
---|---|
testActivity |
Activity : The activity under test |