Search in sources :

Example 11 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by ParanoidAndroid.

the class PowerTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(PowerMeasurement.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 12 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by ParanoidAndroid.

the class LayoutTestsAutoRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(LayoutTestsAutoTest.class);
    suite.addTestSuite(LoadTestsAutoTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 13 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by ParanoidAndroid.

the class RsPerfTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(RsBenchTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 14 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by ParanoidAndroid.

the class BluetoothTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(BluetoothStressTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 15 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by ParanoidAndroid.

the class WifiAssociationTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(WifiAssociationTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Aggregations

InstrumentationTestSuite (android.test.InstrumentationTestSuite)97 TestSuite (junit.framework.TestSuite)97