use of android.test.InstrumentationTestSuite in project android_frameworks_base by ResurrectionRemix.
the class WifiAssociationTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(WifiAssociationTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by DirtyUnicorns.
the class BluetoothTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(BluetoothStressTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by crdroidandroid.
the class BluetoothTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(BluetoothStressTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by crdroidandroid.
the class WifiAssociationTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(WifiAssociationTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by crdroidandroid.
the class ConnectivityManagerTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(ConnectivityManagerMobileTest.class);
suite.addTestSuite(WifiConnectionTest.class);
return suite;
}
Aggregations