# Print output for @column tags ?>
public
abstract
class
ActivityTestCase
extends InstrumentationTestCase
java.lang.Object | ||||
↳ | junit.framework.Assert | |||
↳ | junit.framework.TestCase | |||
↳ | android.test.InstrumentationTestCase | |||
↳ | android.test.ActivityTestCase |
This class is deprecated.
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
.
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 ActivityTestCase ()
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 |
protected void setActivity (Activity testActivity)
Set the activity under test.
Parameters | |
---|---|
testActivity |
Activity : The activity under test |