Searched refs:test (Results 501 - 525 of 892) sorted by relevance

<<21222324252627282930>>

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimServiceTableTest.java19 import android.test.AndroidTestCase;
20 import android.test.suitebuilder.annotation.SmallTest;
/frameworks/support/volley/tests/
H A DAndroid.mk23 LOCAL_JAVA_LIBRARIES := android.test.runner
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
H A DMediaRecorderStressTestRunner.java22 import android.test.InstrumentationTestRunner;
23 import android.test.InstrumentationTestSuite;
31 // MediaRecorder stress test sets one of the cameras as the video source. As
33 // the test must be supported by the corresponding camera.
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScreenshotTest.java22 import android.test.ActivityInstrumentationTestCase2;
23 import android.test.suitebuilder.annotation.LargeTest;
43 * A simple test for screenshots that launches an Activity, injects the key event combo
111 // 'volume adjustment' UI, instead of this test's activity
112 // for this reason this test must be signed with platform certificate, to grant this test
/frameworks/base/core/tests/coretests/src/android/animation/
H A DViewPropertyAnimatorTest.java19 import android.test.ActivityInstrumentationTestCase2;
20 import android.test.UiThreadTest;
21 import android.test.suitebuilder.annotation.MediumTest;
22 import android.test.suitebuilder.annotation.SmallTest;
35 * This test is more complicated than a typical synchronous test because much of the functionality
37 * automatically run the whole test on that thread. Other tests must run on the UI thread and also
53 protected Animator.AnimatorListener mFutureListener; // mechanism for delaying the end of the test
54 protected FutureWaiter mFuture; // Mechanism for waiting for the UI test to complete
90 * it releases it after some further delay, to give the test tim
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchTest.java20 import android.test.suitebuilder.annotation.LargeTest;
56 // All we really care about for this test is that the system
/frameworks/base/core/tests/coretests/src/android/net/
H A DSSLTest.java19 import android.test.suitebuilder.annotation.Suppress;
27 //This test relies on network resources.
30 // test www.fortify.net/sslcheck.html
/frameworks/base/core/tests/coretests/src/android/os/
H A DBuildTest.java20 import android.test.suitebuilder.annotation.SmallTest;
26 * Provides test cases for android.os.Build and, in turn, many of the
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupChildrenTest.java22 import android.test.ActivityInstrumentationTestCase;
23 import android.test.suitebuilder.annotation.MediumTest;
24 import android.test.ViewAsserts;
25 import android.test.UiThreadTest;
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
H A DRecycleAccessibilityEventTest.java17 import android.test.suitebuilder.annotation.SmallTest;
/frameworks/base/core/tests/coretests/src/android/webkit/
H A DUrlInterceptRegistryTest.java19 import android.test.AndroidTestCase;
35 * android.core/android.test.InstrumentationTestRunner
/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DRequestRectangleVisibleTest.java22 import android.test.ActivityInstrumentationTestCase;
23 import android.test.suitebuilder.annotation.LargeTest;
24 import android.test.suitebuilder.annotation.MediumTest;
25 import android.test.ViewAsserts;
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DCharSequencesTest.java22 import android.test.suitebuilder.annotation.SmallTest;
/frameworks/base/core/tests/systemproperties/src/android/os/
H A DSystemPropertiesTest.java22 import android.test.suitebuilder.annotation.SmallTest;
/frameworks/base/test-runner/src/android/test/
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 DApplicationTestCase.java17 package android.test;
26 * This test case provides a framework in which you can test Application classes in
34 * In order to support the lifecycle of a Application, this test case will make the
37 * <ul><li>The test case will not call onCreate() until your test calls
39 * to set up or adjust any additional framework or test logic before
41 * <li>After your test completes, the test case {@link #tearDown} method is
50 * dependencies, and thus perform a true unit test
[all...]
H A DClassPathPackageInfo.java17 package android.test;
H A DLoaderTestCase.java17 package android.test;
29 * A convenience class for testing {@link Loader}s. This test case
56 // The test thread blocks on this queue until the loader puts it's result in
59 // This callback runs on the "main" thread and unblocks the test thread
69 // Store the result, unblocking the test thread
H A DSyncBaseInstrumentation.java17 package android.test;
27 * If you would like to test sync a single provider with an
62 // Finish test if time to sync has exceeded max time.
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentResolver.java17 package android.test.mock;
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java17 package android.test.suitebuilder;
19 import android.test.ClassPathPackageInfo;
20 import android.test.ClassPathPackageInfoSource;
21 import android.test.PackageInfoSources;
40 * Represents a collection of test classes present on the classpath. You can add individual classes
109 * specified. Each of the given packages must contain at least one test class, either directly
251 (method.getName().startsWith("test")) &&
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DAssignableFromTest.java17 package android.test.suitebuilder;
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java17 package com.google.android.test.activity;
27 static final String AUTHORITY = "com.google.android.test.activity.single_user";
/frameworks/base/tests/CoreTests/android/core/
H A DHttpHeaderTest.java18 import android.test.AndroidTestCase;
H A DInetAddrTest.java25 import android.test.suitebuilder.annotation.Suppress;

Completed in 247 milliseconds

<<21222324252627282930>>