# Print output for @column tags ?> InstrumentationTestSuite - Android SDK | Android Developers

Most visited

Recently visited

InstrumentationTestSuite

public class InstrumentationTestSuite
extends TestSuite

java.lang.Object
   ↳ junit.framework.TestSuite
     ↳ android.test.InstrumentationTestSuite


This class is deprecated.
Use InstrumentationRegistry instead. New tests should be written using the Android Testing Support Library.

A TestSuite that injects Instrumentation into InstrumentationTestCase before running them.

Summary

Public constructors

InstrumentationTestSuite(Instrumentation instr)
InstrumentationTestSuite(String name, Instrumentation instr)
InstrumentationTestSuite(Class theClass, Instrumentation instr)

Public methods

void addTestSuite(Class testClass)

Adds the tests from the given class to the suite

void runTest(Test test, TestResult result)

Inherited methods

Public constructors

InstrumentationTestSuite

public InstrumentationTestSuite (Instrumentation instr)

Parameters
instr Instrumentation: The instrumentation that will be injected into each test before running it.

InstrumentationTestSuite

public InstrumentationTestSuite (String name, 
                Instrumentation instr)

Parameters
name String

instr Instrumentation

InstrumentationTestSuite

public InstrumentationTestSuite (Class theClass, 
                Instrumentation instr)

Parameters
theClass Class: Inspected for methods starting with 'test'

instr Instrumentation: The instrumentation to inject into each test before running.

Public methods

addTestSuite

public void addTestSuite (Class testClass)

Adds the tests from the given class to the suite

Parameters
testClass Class

runTest

public void runTest (Test test, 
                TestResult result)

Parameters
test Test

result TestResult