public
abstract
class
ActivityTestCase
extends InstrumentationTestCase
java.lang.Object | ||||
↳ | junit.framework.Assert | |||
↳ | junit.framework.TestCase | |||
↳ | android.test.InstrumentationTestCase | |||
↳ | android.test.ActivityTestCase |
Known Direct Subclasses
ActivityInstrumentationTestCase<T extends Activity>,
ActivityInstrumentationTestCase2<T extends Activity>,
ActivityUnitTestCase<T extends Activity>
|
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
.
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 | |
---|---|
From
class
android.test.InstrumentationTestCase
| |
From
class
junit.framework.TestCase
| |
From
class
junit.framework.Assert
| |
From
class
java.lang.Object
| |
From
interface
junit.framework.Test
|
Activity getActivity ()
Returns | |
---|---|
Activity |
Returns the activity under test. |
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 | |
---|---|
IllegalAccessException |
void setActivity (Activity testActivity)
Set the activity under test.
Parameters | |
---|---|
testActivity |
Activity :
The activity under test
|