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/ |
D | ConnectorSingleton.java | 19 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/ |
D | TestProfileConnector.java | 32 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/ |
D | ProviderTest.java | 23 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 39 private final TestProfileConnector testProfileConnector = 40 TestProfileConnector.create(context, scheduledExecutorService);
|
D | ManualConnectionManagementTest.java | 29 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 44 private final TestProfileConnector testProfileConnector = 45 TestProfileConnector.create(context, scheduledExecutorService);
|
D | OtherProfileSynchronousTest.java | 34 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()
|
D | CrossProfileInterfaceTest.java | 31 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 54 private final TestProfileConnector testProfileConnector = 55 TestProfileConnector.create(context, scheduledExecutorService);
|
D | CrossProfileServiceTest.java | 34 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 53 private final TestProfileConnector testProfileConnector = 54 TestProfileConnector.create(context, scheduledExecutorService);
|
D | AvailabilityListenerTest.java | 30 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 48 private final TestProfileConnector testProfileConnector = 49 TestProfileConnector.create(context, scheduledExecutorService);
|
D | MessageSizeTest.java | 33 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 54 private final TestProfileConnector testProfileConnector = 55 TestProfileConnector.create(context, scheduledExecutorService);
|
D | BothProfilesSynchronousTest.java | 34 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 55 private final TestProfileConnector testProfileConnector = 56 TestProfileConnector.create(context, scheduledExecutorService);
|
D | OtherProfileManualListenableFutureTest.java | 31 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/ |
D | NotInstalledInOtherUserTest.java | 25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | InstrumentedTestUtilitiesTest.java | 23 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 37 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | ConnectTest.java | 25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 46 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | SecondUserTest.java | 24 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 37 private final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | NotReallySerializableTest.java | 29 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 49 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | BothProfilesTest.java | 25 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | MessageSizeTest.java | 27 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 45 private static final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | AvailabilityListenerTest.java | 30 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 44 private final TestProfileConnector connector = TestProfileConnector.create(context);
|
D | HappyPathEndToEndTest.java | 27 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/ |
D | ProfileConnectorUnsupportedTest.java | 26 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 37 private final TestProfileConnector testProfileConnector = TestProfileConnector.create(context);
|
D | PermissionsTest.java | 26 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 40 private final TestProfileConnector connector = 41 TestProfileConnector.create(context, scheduledExecutorService);
|
D | ProfileConnectorTest.java | 33 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()
|
D | ConnectedAppsUtilsTest.java | 26 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/ |
D | TestCrossProfileInterface.java | 19 import com.google.android.enterprise.connectedapps.testapp.connector.TestProfileConnector; 22 @CrossProfile(connector = TestProfileConnector.class)
|
12