/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | ResizeActivity.java | 17 package com.android.test.hwui;
|
H A D | SimplePathsActivity.java | 17 package com.android.test.hwui;
|
H A D | StackActivity.java | 17 package com.android.test.hwui;
|
H A D | TextFadeActivity.java | 17 package com.android.test.hwui;
|
H A D | TimeDialogActivity.java | 17 package com.android.test.hwui;
|
H A D | ViewFlipperActivity.java | 17 package com.android.test.hwui;
|
/frameworks/base/core/java/android/test/ |
H A D | InstrumentationTestSuite.java | 17 package android.test; 35 * test before running it. 48 * @param theClass Inspected for methods starting with 'test' 49 * @param instr The instrumentation to inject into each test before 65 public void runTest(Test test, TestResult result) { argument 67 if (test instanceof InstrumentationTestCase) { 68 ((InstrumentationTestCase) test).injectInstrumentation(mInstrumentation); 71 // run the test as usual 72 super.runTest(test, result);
|
/frameworks/base/test-runner/src/android/test/ |
H A D | TestCaseUtil.java | 17 package android.test; 44 public static List<String> getTestCaseNames(Test test, boolean flatten) { argument 45 List<Test> tests = (List<Test>) getTests(test, flatten); 53 public static List<? extends Test> getTests(Test test, boolean flatten) { argument 54 return getTests(test, flatten, new HashSet<Class<?>>()); 57 private static List<? extends Test> getTests(Test test, boolean flatten, argument 60 if (test != null) { 65 * invoke the suite() method, because we will run all test methods 68 if (test instanceof TestCase && 69 ((TestCase)test) 123 getTestName(Test test) argument [all...] |
H A D | ActivityTestCase.java | 17 package android.test; 25 * This is common code used to support Activity test cases. For more useful classes, please see 26 * {@link android.test.ActivityUnitTestCase} and 27 * {@link android.test.ActivityInstrumentationTestCase}. 32 * The activity that will be set up for use in each test method. 37 * @return Returns the activity under test. 44 * Set the activity under test. 45 * @param testActivity The activity under test 54 * test case creates a non-static inner class (thus referencing the test cas [all...] |
H A D | ComparisonFailure.java | 17 package android.test;
|
H A D | InstrumentationCoreTestRunner.java | 17 package android.test; 35 import android.test.suitebuilder.TestMethod; 36 import android.test.suitebuilder.annotation.HasAnnotation; 40 * This test runner extends the default InstrumentationTestRunner. It overrides 58 * True if (and only if) we are running in single-test mode (as opposed to 90 * The last test class we executed code from. 95 * The minimum time we expect a test to take. 100 * The start time of our current test in System.currentTimeMillis(). 104 public void startTest(Test test) { 105 if (test [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | KeyUtils.java | 21 import android.test.ActivityInstrumentationTestCase; 22 import android.test.InstrumentationTestCase; 43 * @param test The test case that is being run. 45 public static void tapMenuKey(ActivityInstrumentationTestCase test) { argument 46 final Instrumentation inst = test.getInstrumentation(); 55 * @param test The test case that is being run. 58 public static void chordMenuKey(ActivityInstrumentationTestCase test, char shortcutKey) { argument 59 final Instrumentation inst = test 77 longClick(ActivityInstrumentationTestCase test) argument [all...] |
/frameworks/base/opengl/tests/testViewport/src/com/android/test/ |
H A D | TestActivity.java | 17 package com.android.test;
|
/frameworks/base/test-runner/src/android/test/mock/ |
H A D | MockApplication.java | 17 package android.test.mock;
|
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/ |
H A D | HasAnnotation.java | 17 package android.test.suitebuilder.annotation; 21 import android.test.suitebuilder.TestMethod;
|
H A D | HasClassAnnotation.java | 17 package android.test.suitebuilder.annotation; 21 import android.test.suitebuilder.TestMethod; 25 * A predicate that checks to see if a {@link android.test.suitebuilder.TestMethod} has a specific annotation on the
|
H A D | HasMethodAnnotation.java | 17 package android.test.suitebuilder.annotation; 20 import android.test.suitebuilder.TestMethod;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/ |
H A D | OuterTest.java | 17 package android.test.suitebuilder.examples; 19 import android.test.suitebuilder.TestSuiteBuilder;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/constructor/ |
H A D | NoPublicConstructorTest.java | 17 package android.test.suitebuilder.examples.constructor;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/ |
H A D | ErrorTest.java | 17 package android.test.suitebuilder.examples.error;
|
H A D | FailingTest.java | 17 package android.test.suitebuilder.examples.error;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/ |
H A D | Level2Test.java | 17 package android.test.suitebuilder.examples.nested.nested;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/simple/ |
H A D | SimpleTest.java | 17 package android.test.suitebuilder.examples.simple;
|
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/suppress/ |
H A D | PartiallySuppressedTest.java | 17 package android.test.suitebuilder.examples.suppress; 19 import android.test.suitebuilder.annotation.Suppress;
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
H A D | GridLayoutTest.java | 17 package com.android.test.layout;
|