Searched defs:test (Results 101 - 125 of 297) sorted by relevance

1234567891011>>

/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DUT_fp_mad.java17 package com.android.rs.test;
H A DUT_int4.java17 package com.android.rs.test;
H A DUT_math.java17 package com.android.rs.test;
H A DUT_math_conformance.java17 package com.android.rs.test;
H A DUT_min.java17 package com.android.rs.test;
H A DUT_rsdebug.java17 package com.android.rs.test;
H A DUT_rstime.java17 package com.android.rs.test;
H A DUT_rstypes.java17 package com.android.rs.test;
H A DUT_struct.java17 package com.android.rs.test;
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestActivity.java17 package com.android.test;
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DAndroidJUnit3ClassRunner.java16 package com.android.test.runner.junit3;
H A DNonExecutingJUnit3ClassRunner.java16 package com.android.test.runner.junit3;
24 * A specialized {@link JUnit38ClassRunner} that will skip test execution.
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
H A DNonExecutingJUnit4ClassRunner.java16 package com.android.test.runner.junit4;
24 * A specialized {@link BlockJUnit4ClassRunner} that will generate test results, by skipping test
H A DAndroidJUnit4ClassRunner.java16 package com.android.test.runner.junit4;
22 import com.android.test.InjectContext;
23 import com.android.test.InjectInstrumentation;
56 Object test = super.createTest();
57 inject(test);
58 return test;
96 private void inject(Object test) { argument
100 setFieldValue(test, instrField.getField(), mInstr);
105 setFieldValue(test, contextField.getField(), mInstr.getTargetContext());
109 private void setFieldValue(Object test, Fiel argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java17 package android.test;
28 * Prints the test progress to stdout. Android includes a default
29 * implementation and calls these methods to print out test progress; you
31 * See the full {@link android.test} package description for information about
32 * getting test results.
88 private void failed(Test test, Throwable t) { argument
89 mFailedTests.add(test.toString());
90 failed(test.toString(), t);
93 public void addError(Test test, Throwable t) { argument
94 failed(test,
97 addFailure(Test test, junit.framework.AssertionFailedError t) argument
101 endTest(Test test) argument
109 startTest(Test test) argument
[all...]
H A DViewAsserts.java17 package android.test;
276 * Assert that the <code>test</code> view is horizontally center aligned
280 * @param test The view that should be center aligned with the reference view
282 static public void assertHorizontalCenterAligned(View reference, View test) { argument
287 test.getLocationOnScreen(xy);
290 int center = (reference.getMeasuredWidth() - test.getMeasuredWidth()) / 2;
297 * Assert that the <code>test</code> view is vertically center aligned
301 * @param test The view that should be center aligned with the reference view
303 static public void assertVerticalCenterAligned(View reference, View test) { argument
308 test
[all...]
H A DActivityInstrumentationTestCase.java17 package android.test;
24 * This class provides functional testing of a single activity. The activity under test will
29 * <p>If you prefer an isolated unit test, see {@link android.test.ActivityUnitTestCase}.
32 * {@link android.test.ActivityInstrumentationTestCase2}, which provides more options for
33 * configuring the Activity under test
46 * @param activityClass The activity to test. This must be a class in the instrumentation
57 * @param activityClass The activity to test. This must be a class in the instrumentation
87 // creates a non-static inner class (thus referencing the test case) and gives it to
H A DActivityInstrumentationTestCase2.java17 package android.test;
25 * This class provides functional testing of a single activity. The activity under test will
29 * <p>Other options supported by this test case include:
31 * <li>You can run any test method on the UI thread (see {@link android.test.UiThreadTest}).</li>
36 * <p>This class replaces {@link android.test.ActivityInstrumentationTestCase}, which is deprecated.
39 * <p>If you prefer an isolated unit test, see {@link android.test.ActivityUnitTestCase}.
57 * @param activityClass The activity to test. This must be a class in the instrumentation
70 * @param activityClass The activity to test
[all...]
H A DClassPathPackageInfo.java17 package android.test;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DInstrumentationTestSuiteBuilderTest.java17 package android.test.suitebuilder;
19 import static android.test.suitebuilder.ListTestCaseNames.getTestCaseNames;
20 import android.test.suitebuilder.examples.OuterTest;
21 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
80 public void addError(Test test, Throwable t) { argument
81 errors.add(testName(test));
84 public void addFailure(Test test, AssertionFailedError t) { argument
85 failures.add(testName(test));
88 public void endTest(Test test) { argument
91 public void startTest(Test test) { argument
111 testName(Test test) argument
[all...]
H A DUnitTestSuiteBuilderTest.java17 package android.test.suitebuilder;
19 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
73 public void addError(Test test, Throwable t) { argument
74 errors.add(testName(test));
77 public void addFailure(Test test, AssertionFailedError t) { argument
78 failures.add(testName(test));
81 public void endTest(Test test) { argument
84 public void startTest(Test test) { argument
85 testsSeen.add(testName(test));
104 private String testName(Test test) { argument
[all...]
/frameworks/base/core/java/android/debug/
H A DJNITest.java20 * Simple JNI verification test.
27 public int test(int intArg, double doubleArg, String stringArg) { method in class:JNITest
/frameworks/base/core/java/android/test/
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.
/frameworks/base/core/tests/coretests/src/android/util/
H A DTouchModeFlexibleAsserts.java21 import android.test.InstrumentationTestCase;
22 import android.test.TouchUtils;
36 public static void assertInTouchModeAfterClick(InstrumentationTestCase test, View viewToTouch) { argument
40 TouchUtils.clickView(test, viewToTouch);
48 public static void assertInTouchModeAfterTap(InstrumentationTestCase test, View viewToTouch) { argument
52 TouchUtils.tapView(test, viewToTouch);
60 public static void assertNotInTouchModeAfterKey(InstrumentationTestCase test, int keyCode, View checkForTouchMode) { argument
61 test.sendKeys(keyCode);
/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java16 package android.test;
28 * A bandwidth test case that collects bandwidth statistics for tests that are
29 * annotated with {@link BandwidthTest} otherwise the test is executed
92 * If bandwidth profiling fails for whatever reason the test
133 // Report current iteration number, if test is repetitive

Completed in 439 milliseconds

1234567891011>>