Searched defs:test (Results 51 - 75 of 222) sorted by relevance

123456789

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DResizeActivity.java17 package com.android.test.hwui;
H A DSimplePathsActivity.java17 package com.android.test.hwui;
H A DStackActivity.java17 package com.android.test.hwui;
H A DTextFadeActivity.java17 package com.android.test.hwui;
H A DTimeDialogActivity.java17 package com.android.test.hwui;
H A DViewFlipperActivity.java17 package com.android.test.hwui;
/frameworks/base/core/java/android/test/
H A DInstrumentationTestSuite.java17 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 DTestCaseUtil.java17 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 DActivityTestCase.java17 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 DComparisonFailure.java17 package android.test;
H A DInstrumentationCoreTestRunner.java17 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 DKeyUtils.java21 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 DTestActivity.java17 package com.android.test;
/frameworks/base/test-runner/src/android/test/mock/
H A DMockApplication.java17 package android.test.mock;
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
H A DHasAnnotation.java17 package android.test.suitebuilder.annotation;
21 import android.test.suitebuilder.TestMethod;
H A DHasClassAnnotation.java17 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 DHasMethodAnnotation.java17 package android.test.suitebuilder.annotation;
20 import android.test.suitebuilder.TestMethod;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/
H A DOuterTest.java17 package android.test.suitebuilder.examples;
19 import android.test.suitebuilder.TestSuiteBuilder;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/constructor/
H A DNoPublicConstructorTest.java17 package android.test.suitebuilder.examples.constructor;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DErrorTest.java17 package android.test.suitebuilder.examples.error;
H A DFailingTest.java17 package android.test.suitebuilder.examples.error;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/
H A DLevel2Test.java17 package android.test.suitebuilder.examples.nested.nested;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/simple/
H A DSimpleTest.java17 package android.test.suitebuilder.examples.simple;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/suppress/
H A DPartiallySuppressedTest.java17 package android.test.suitebuilder.examples.suppress;
19 import android.test.suitebuilder.annotation.Suppress;
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DGridLayoutTest.java17 package com.android.test.layout;

Completed in 299 milliseconds

123456789