Searched refs:TestSuite (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/content/
H A DContentTests.java19 import junit.framework.TestSuite;
22 public static TestSuite suite() {
23 TestSuite suite = new TestSuite(ContentTests.class.getName());
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DGraphicsTests.java19 import junit.framework.TestSuite;
22 public static TestSuite suite() {
23 TestSuite suite = new TestSuite(GraphicsTests.class.getName());
/frameworks/base/test-runner/src/android/test/
H A DTestSuiteProvider.java19 import junit.framework.TestSuite;
32 TestSuite getTestSuite();
H A DTestCaseUtil.java22 import junit.framework.TestSuite;
67 if (workingTest instanceof TestSuite) {
68 TestSuite testSuite = (TestSuite) workingTest;
92 * method that returns a TestSuite including the TestCase itself,
117 } else if (test instanceof TestSuite) {
118 TestSuite testSuite = (TestSuite) test;
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityTests.java19 import junit.framework.TestSuite;
24 public static TestSuite suite() {
25 TestSuite suite = new TestSuite(ActivityTests.class.getName());
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/
H A DOuterTest.java22 import junit.framework.TestSuite;
30 public TestSuite buildTestsUnderHereRecursively() {
34 public TestSuite buildTestsUnderHereWith(TestSuiteBuilder testSuiteBuilder) {
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestRunner.java22 import junit.framework.TestSuite;
36 public TestSuite getAllTests() {
37 TestSuite suite = new InstrumentationTestSuite(this);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerUnitTestRunner.java23 import junit.framework.TestSuite;
34 public TestSuite getAllTests() {
35 TestSuite suite = new InstrumentationTestSuite(this);
H A DWifiAssociationTestRunner.java24 import junit.framework.TestSuite;
39 public TestSuite getAllTests() {
40 TestSuite suite = new InstrumentationTestSuite(this);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaFrameworkPowerTestRunner.java21 import junit.framework.TestSuite;
39 public TestSuite getAllTests() {
40 TestSuite suite = new InstrumentationTestSuite(this);
H A DMediaPlayerStressTestRunner.java23 import junit.framework.TestSuite;
28 public TestSuite getAllTests() {
29 TestSuite suite = new InstrumentationTestSuite(this);
H A DMediaFrameworkUnitTestRunner.java23 import junit.framework.TestSuite;
45 public TestSuite getAllTests() {
46 TestSuite suite = new InstrumentationTestSuite(this);
62 private void addCameraUnitTests(TestSuite suite) {
68 private void addImageReaderTests(TestSuite suite) {
73 private void addMediaMetadataRetrieverStateUnitTests(TestSuite suite) {
78 private void addMediaRecorderStateUnitTests(TestSuite suite) {
90 private void addMediaPlayerStateUnitTests(TestSuite suite) {
107 private void addMediaScannerUnitTests(TestSuite suite) {
111 private void addExifInterfaceTests(TestSuite suit
[all...]
H A DCameraStressTestRunner.java26 import junit.framework.TestSuite;
31 public TestSuite getAllTests() {
32 TestSuite suite = new InstrumentationTestSuite(this);
H A DCamera2InstrumentationTestRunner.java24 import junit.framework.TestSuite;
36 public TestSuite getAllTests() {
37 TestSuite suite = new InstrumentationTestSuite(this);
H A DMediaFrameworkIntegrationTestRunner.java27 import junit.framework.TestSuite;
44 public TestSuite getAllTests() {
45 TestSuite suite = new InstrumentationTestSuite(this);
H A DMediaFrameworkPerfTestRunner.java20 import junit.framework.TestSuite;
42 public TestSuite getAllTests() {
43 TestSuite suite = new InstrumentationTestSuite(this);
/frameworks/base/core/tests/coretests/src/android/os/
H A DOsTests.java20 import junit.framework.TestSuite;
26 public static TestSuite suite() {
27 TestSuite suite = new TestSuite(OsTests.class.getName());
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingTestRunner.java23 import junit.framework.TestSuite;
34 public TestSuite getAllTests() {
35 TestSuite suite = new InstrumentationTestSuite(this);
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DSmokeTestSuiteBuilderTest.java20 import junit.framework.TestSuite;
27 TestSuite testSuite = new SmokeTestSuiteBuilder(getClass())
H A DListTestCaseNames.java21 import junit.framework.TestSuite;
28 public static List<String> getTestCaseNames(TestSuite suite) {
35 } else if (test instanceof TestSuite) {
36 testCaseNames.addAll(getTestCaseNames((TestSuite) test));
45 public static List<TestDescriptor> getTestNames(TestSuite suite) {
53 } else if (test instanceof TestSuite) {
54 testNames.addAll(getTestNames((TestSuite) test));
/frameworks/base/core/tests/coretests/src/android/database/
H A DNewDatabasePerformanceTestSuite.java19 import junit.framework.TestSuite;
21 public class NewDatabasePerformanceTestSuite extends TestSuite {
22 public static TestSuite suite() {
23 TestSuite suite =
24 new TestSuite(NewDatabasePerformanceTestSuite.class.getName());
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerTestRunner.java25 import junit.framework.TestSuite;
41 public TestSuite getAllTests() {
42 TestSuite suite = new InstrumentationTestSuite(this);
/frameworks/base/test-runner/tests/src/android/test/
H A DTestCaseUtilTest.java23 import junit.framework.TestSuite;
40 TestSuite testSuite = new TwoTestsInTestSuite();
74 assertEquals("", TestCaseUtil.getTestName(new TestSuite()));
98 TestSuite suite = new TestSuite(OneTestTestSuite.class.getName());
104 public static class TwoTestsInTestSuite extends TestSuite {
106 TestSuite suite = new TestSuite(TwoTestsInTestSuite.class.getName());
H A DAndroidTestRunnerTest.java26 import junit.framework.TestSuite;
50 mAndroidTestRunner.setTestClassName(TestSuite.class.getName(), null);
56 assertEquals(TestSuite.class.getSimpleName(), mAndroidTestRunner.getTestClassName());
197 public TestSuite getTestSuite() {
198 TestSuite testSuite = new TestSuite();
209 public static TestSuite suite() {
210 TestSuite testSuite = new TestSuite();
218 public static TestSuite suit
[all...]
/frameworks/base/test-base/src/android/test/
H A DInstrumentationTestSuite.java21 import junit.framework.TestSuite;
26 * A {@link junit.framework.TestSuite} that injects {@link android.app.Instrumentation} into
35 public class InstrumentationTestSuite extends TestSuite {

Completed in 400 milliseconds

12