Searched refs:test (Results 151 - 175 of 1182) sorted by relevance

1234567891011>>

/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DImageProcessingTestRunner.java21 import android.test.InstrumentationTestRunner;
22 import android.test.InstrumentationTestSuite;
26 * Run the ImageProcessing benchmark test
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBlasTestRunner.java21 import android.test.InstrumentationTestRunner;
22 import android.test.InstrumentationTestSuite;
26 * BLAS benchmark test.
27 * To run the test, please use command
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A Daddup.rs18 #pragma rs java_package_name(com.android.rs.test)
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java17 package android.test;
38 * Support class that actually runs a test. Android uses this class,
40 * class yourself. See the full {@link android.test} package description
96 * start of a test.
98 * @param test
100 public void startTest(Test test) { argument
101 started(test.toString());
106 * end of the test.
108 * @param test
110 public void endTest(Test test) { argument
123 addError(Test test, Throwable t) argument
128 addFailure(Test test, junit.framework.AssertionFailedError t) argument
[all...]
/frameworks/base/core/java/android/test/
H A DFlakyTest.java17 package android.test;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s
26 * test methods. When the annotation is present, the test method is re-executed if
27 * the test fails. The total number of executions is specified by the tolerance and
34 * Indicates how many times a test can run and fail before being reported
35 * as a failed test. If the tolerance factor is less than 1, the test runs
H A DPerformanceTestCase.java17 package android.test;
20 * More complex interface performance for test cases.
22 * If you want your test to be used as a performance test, you must
42 * if you use it, you will probably want to ensure your test is only
43 * executed once by returning 1. Otherwise, return 0 to allow the test
49 * duration of the test whose performance should actually be measured.
59 * This method is used to determine what modes this test case can run in.
61 * @return true if this test case can only be run in performance mode.
H A DRepetitiveTest.java17 package android.test;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed the number of times specified by
35 * Indicates the number of times a test case should be run.
H A DUiThreadTest.java17 package android.test;
25 * This annotation can be used on an {@link InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed on the application's
/frameworks/base/core/java/android/test/suitebuilder/annotation/
H A DLargeTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the large tests.
H A DMediumTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the medium tests.
H A DSmallTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the small tests.
H A DSmoke.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the smoke tests.
26 * The <code>android.test.suitebuilder.SmokeTestSuiteBuilder</code>
29 * @see android.test.suitebuilder.SmokeTestSuiteBuilder
H A DSuppress.java17 package android.test.suitebuilder.annotation;
25 * Use this annotation on test classes or test methods that should not be included in a test
27 * the annotation appears only on a test method then only that method will be excluded.
/frameworks/base/core/tests/bluetoothtests/
H A DAndroid.mk7 # Include all test java files.
11 LOCAL_JAVA_LIBRARIES := android.test.runner
/frameworks/base/core/tests/coretests/src/android/app/
H A DInstrumentationTest.java20 import android.test.InstrumentationTestCase;
25 * Simple stress test for {@link Instrumentation#sendStatus(int, android.os.Bundle)}, to
/frameworks/base/core/tests/coretests/src/android/view/
H A DDisabledLongpressTest.java22 import android.test.TouchUtils;
23 import android.test.suitebuilder.annotation.LargeTest;
24 import android.test.suitebuilder.annotation.MediumTest;
26 import android.test.ActivityInstrumentationTestCase;
H A DDisabledTest.java20 import android.test.TouchUtils;
21 import android.test.suitebuilder.annotation.MediumTest;
22 import android.test.suitebuilder.annotation.LargeTest;
24 import android.test.ActivityInstrumentationTestCase;
H A DLongpressTest.java22 import android.test.TouchUtils;
23 import android.test.suitebuilder.annotation.LargeTest;
24 import android.test.suitebuilder.annotation.MediumTest;
26 import android.test.ActivityInstrumentationTestCase;
/frameworks/base/core/tests/coretests/src/android/widget/
H A DRadioGroupPreCheckedTest.java21 import android.test.ActivityInstrumentationTestCase2;
22 import android.test.TouchUtils;
23 import android.test.suitebuilder.annotation.LargeTest;
24 import android.test.suitebuilder.annotation.MediumTest;
/frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
H A DGridTouchSetSelectionTest.java19 import android.test.ActivityInstrumentationTestCase;
20 import android.test.suitebuilder.annotation.LargeTest;
21 import android.test.suitebuilder.annotation.MediumTest;
22 import android.test.TouchUtils;
H A DGridTouchStackFromBottomManyTest.java19 import android.test.suitebuilder.annotation.LargeTest;
20 import android.test.suitebuilder.annotation.MediumTest;
21 import android.test.TouchUtils;
26 import android.test.ActivityInstrumentationTestCase;
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
H A DListOfTouchablesTest.java19 import android.test.ActivityInstrumentationTestCase;
20 import android.test.suitebuilder.annotation.LargeTest;
21 import android.test.suitebuilder.annotation.MediumTest;
28 import android.test.TouchUtils;
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsBT/src/com/android/framework/externalsharedpermsbttestapp/
H A DExternalSharedPermsBTTest.java20 import android.test.InstrumentationTestCase;
/frameworks/base/core/tests/inputmethodtests/
H A DAndroid.mk7 # Include all test java files.
13 LOCAL_JAVA_LIBRARIES := android.test.runner
/frameworks/base/core/tests/notificationtests/
H A DAndroid.mk7 # Include all test java files.
11 LOCAL_JAVA_LIBRARIES := android.test.runner

Completed in 1834 milliseconds

1234567891011>>