Search in sources :

Example 6 with InstrumentationTestSuite

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

the class MediaFrameworkPowerTestRunner method getAllTests.

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

Example 7 with InstrumentationTestSuite

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

the class MediaPlayerStressTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(MediaPlayerStressTest.class);
    /** Video Editor Stress Test cases*/
    suite.addTestSuite(VideoEditorStressTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 8 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 9 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 10 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)

Aggregations

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