/aosp14/frameworks/base/test-runner/src/android/test/ |
H A D | TouchUtils.java | 264 public static void tapView(InstrumentationTestCase test, View v) { in tapView() 304 public static void touchAndCancelView(InstrumentationTestCase test, View v) { in touchAndCancelView() 339 public static void clickView(InstrumentationTestCase test, View v) { in clickView() 391 longClickView((InstrumentationTestCase) test, v); in longClickView() 400 public static void longClickView(InstrumentationTestCase test, View v) { in longClickView() 451 dragViewToTop((InstrumentationTestCase) test, v, 4); in dragViewToTop() 467 dragViewToTop((InstrumentationTestCase) test, v, stepCount); in dragViewToTop() 476 public static void dragViewToTop(InstrumentationTestCase test, View v) { in dragViewToTop() 617 return dragViewTo((InstrumentationTestCase) test, v, gravity, toX, toY); in dragViewTo() 668 return dragViewToX((InstrumentationTestCase) test, v, gravity, toX); in dragViewToX() [all …]
|
/aosp14/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | TouchModeFlexibleAsserts.java | 19 import android.test.InstrumentationTestCase; 36 public static void assertInTouchModeAfterClick(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterClick() 48 public static void assertInTouchModeAfterTap(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterTap() 60 …public static void assertNotInTouchModeAfterKey(InstrumentationTestCase test, int keyCode, View ch… in assertNotInTouchModeAfterKey()
|
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/ |
H A D | InstrumentationTest.java | 19 import android.test.InstrumentationTestCase; 21 public class InstrumentationTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsBT/src/com/android/framework/externalsharedpermsbttestapp/ |
H A D | ExternalSharedPermsBTTest.java | 20 import android.test.InstrumentationTestCase; 22 public class ExternalSharedPermsBTTest extends InstrumentationTestCase
|
/aosp14/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | InstrumentationTest.java | 20 import android.test.InstrumentationTestCase; 25 public class InstrumentationTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestAppTests/src/com/android/multidexlegacytestapp/test/ |
H A D | InstrumentationTest.java | 18 import android.test.InstrumentationTestCase; 28 public class InstrumentationTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/test-runner/api/ |
H A D | current.txt | 19 @Deprecated public abstract class ActivityTestCase extends android.test.InstrumentationTestCase { 199 @Deprecated public class SyncBaseInstrumentation extends android.test.InstrumentationTestCase { 211 …method @Deprecated public static void clickView(android.test.InstrumentationTestCase, android.view… 213 …method @Deprecated public static void drag(android.test.InstrumentationTestCase, float, float, flo… 228 …method @Deprecated public static void dragViewToTop(android.test.InstrumentationTestCase, android.… 229 …method @Deprecated public static void dragViewToTop(android.test.InstrumentationTestCase, android.… 231 …method @Deprecated public static int dragViewToX(android.test.InstrumentationTestCase, android.vie… 233 …method @Deprecated public static int dragViewToY(android.test.InstrumentationTestCase, android.vie… 235 …method @Deprecated public static void longClickView(android.test.InstrumentationTestCase, android.… 240 …method @Deprecated public static void tapView(android.test.InstrumentationTestCase, android.view.V… [all …]
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/src/com/android/framework/externalsharedpermsfltestapp/ |
H A D | ExternalSharedPermsFLTest.java | 24 import android.test.InstrumentationTestCase; 26 public class ExternalSharedPermsFLTest extends InstrumentationTestCase
|
/aosp14/frameworks/base/test-base/src/android/test/ |
H A D | InstrumentationTestSuite.java | 73 if (test instanceof InstrumentationTestCase) { in runTest() 74 ((InstrumentationTestCase) test).injectInstrumentation(mInstrumentation); in runTest()
|
/aosp14/frameworks/base/core/tests/companiontests/src/android/companion/ |
H A D | BluetoothDeviceFilterUtilsTest.java | 20 import android.test.InstrumentationTestCase; 22 public class BluetoothDeviceFilterUtilsTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/src/com/android/framework/externalsharedpermstestapp/ |
H A D | ExternalSharedPermsTest.java | 27 import android.test.InstrumentationTestCase; 29 public class ExternalSharedPermsTest extends InstrumentationTestCase
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/src/com/android/framework/externalsharedpermsdiffkeytestapp/ |
H A D | ExternalSharedPermsDiffKeyTest.java | 25 import android.test.InstrumentationTestCase; 27 public class ExternalSharedPermsDiffKeyTest extends InstrumentationTestCase
|
/aosp14/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/ |
H A D | UiAutomatorTestCase.java | 22 import android.test.InstrumentationTestCase; 33 public class UiAutomatorTestCase extends InstrumentationTestCase {
|
/aosp14/frameworks/base/test-runner/src/android/test/suitebuilder/ |
H A D | TestPredicates.java | 19 import android.test.InstrumentationTestCase; 31 not(new AssignableFrom(InstrumentationTestCase.class));
|
/aosp14/frameworks/base/tests/ServiceCrashTest/src/com/android/tests/servicecrashtest/ |
H A D | ServiceCrashTest.java | 24 import android.test.InstrumentationTestCase; 31 public class ServiceCrashTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServicesTests/src/com/android/framework/multidexlegacytestservices/test/ |
H A D | ServicesTests.java | 20 import android.test.InstrumentationTestCase; 30 public class ServicesTests extends InstrumentationTestCase {
|
/aosp14/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/ |
H A D | DataIdleTest.java | 26 import android.test.InstrumentationTestCase; 35 public class DataIdleTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/tests/ |
H A D | NoActivityJUnit3Test.java | 18 import android.test.InstrumentationTestCase; 42 public class NoActivityJUnit3Test extends InstrumentationTestCase {
|
/aosp14/frameworks/base/tests/TtsTests/src/com/android/speech/tts/ |
H A D | TtsEnginesTests.java | 4 import android.test.InstrumentationTestCase; 8 public class TtsEnginesTests extends InstrumentationTestCase {
|
/aosp14/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/ |
H A D | BasicNfcEeTest.java | 21 import android.test.InstrumentationTestCase; 31 public class BasicNfcEeTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/ |
H A D | CarrierDefaultReceiverTest.java | 32 import android.test.InstrumentationTestCase; 42 public class CarrierDefaultReceiverTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/services/tests/PackageManagerServiceTests/server/src/com/android/server/pm/ |
H A D | ModuleInfoProviderTest.java | 25 import android.test.InstrumentationTestCase; 35 public class ModuleInfoProviderTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | ListViewTest.java | 21 import android.test.InstrumentationTestCase; 36 public class ListViewTest extends InstrumentationTestCase {
|
/aosp14/frameworks/base/test-base/hiddenapi/src/android/test/ |
H A D | InstrumentationTestCase.java | 30 public class InstrumentationTestCase extends TestCase { class
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
H A D | ScrollingThroughListOfFocusablesTest.java | 20 import android.test.InstrumentationTestCase; 32 public class ScrollingThroughListOfFocusablesTest extends InstrumentationTestCase {
|