Home
last modified time | relevance | path

Searched refs:TestProfileConnector (Results 1 – 25 of 44) sorted by relevance

12

/external/connectedappssdk/tests/shared/src/main/java/com/google/android/enterprise/connectedapps/testapp/
DConnectorSingleton.java19 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
23 private static TestProfileConnector connector;
25 public static TestProfileConnector getConnector(Context context) { in getConnector()
28 connector = TestProfileConnector.create(context); in getConnector()
/external/connectedappssdk/tests/shared/src/main/java/com/google/android/enterprise/connectedapps/testapp/connector/
DTestProfileConnector.java32 public interface TestProfileConnector extends ProfileConnector { interface
33 static TestProfileConnector create(Context context) { in create()
37 static TestProfileConnector create( in create()
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/robotests/
DProviderTest.java23 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
39 private final TestProfileConnector testProfileConnector =
40 TestProfileConnector.create(context, scheduledExecutorService);
DManualConnectionManagementTest.java29 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
44 private final TestProfileConnector testProfileConnector =
45 TestProfileConnector.create(context, scheduledExecutorService);
DOtherProfileSynchronousTest.java34 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
60 private final TestProfileConnector testProfileConnector =
61 TestProfileConnector.create(context, scheduledExecutorService);
101 ProfileTestCrossProfileType.create(TestProfileConnector.create(context)); in other_synchronous_isNotInitialised_throwsUnavailableProfileException()
DCrossProfileInterfaceTest.java31 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
54 private final TestProfileConnector testProfileConnector =
55 TestProfileConnector.create(context, scheduledExecutorService);
DCrossProfileServiceTest.java34 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
53 private final TestProfileConnector testProfileConnector =
54 TestProfileConnector.create(context, scheduledExecutorService);
DAvailabilityListenerTest.java30 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
48 private final TestProfileConnector testProfileConnector =
49 TestProfileConnector.create(context, scheduledExecutorService);
DMessageSizeTest.java33 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
54 private final TestProfileConnector testProfileConnector =
55 TestProfileConnector.create(context, scheduledExecutorService);
DBothProfilesSynchronousTest.java34 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
55 private final TestProfileConnector testProfileConnector =
56 TestProfileConnector.create(context, scheduledExecutorService);
DOtherProfileManualListenableFutureTest.java31 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
54 private final TestProfileConnector testProfileConnector =
55 TestProfileConnector.create(context, scheduledExecutorService);
/external/connectedappssdk/tests/instrumented/src/main/java/com/google/android/enterprise/connectedapps/instrumented/tests/
DNotInstalledInOtherUserTest.java25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DInstrumentedTestUtilitiesTest.java23 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
37 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DConnectTest.java25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
46 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DSecondUserTest.java24 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
37 private final TestProfileConnector connector = TestProfileConnector.create(context);
DNotReallySerializableTest.java29 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
49 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DBothProfilesTest.java25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DMessageSizeTest.java27 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
DAvailabilityListenerTest.java30 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
44 private final TestProfileConnector connector = TestProfileConnector.create(context);
DHappyPathEndToEndTest.java27 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
53 private static final TestProfileConnector connector = TestProfileConnector.create(context);
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DProfileConnectorUnsupportedTest.java26 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
37 private final TestProfileConnector testProfileConnector = TestProfileConnector.create(context);
DPermissionsTest.java26 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
40 private final TestProfileConnector connector =
41 TestProfileConnector.create(context, scheduledExecutorService);
DProfileConnectorTest.java33 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
53 private final TestProfileConnector testProfileConnector =
54 TestProfileConnector.create(context, scheduledExecutorService);
75 assertThrows(NullPointerException.class, () -> TestProfileConnector.create(null)); in construct_nullConnector_throwsNullPointerException()
DConnectedAppsUtilsTest.java26 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
42 private final TestProfileConnector testProfileConnector =
43 TestProfileConnector.create(context, scheduledExecutorService);
/external/connectedappssdk/tests/shared/src/main/java/com/google/android/enterprise/connectedapps/testapp/types/
DTestCrossProfileInterface.java19 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector;
22 @CrossProfile(connector = TestProfileConnector.class)

12