Home
last modified time | relevance | path

Searched refs:deviceProfile (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/companion/core/src/android/companion/cts/core/
DDeviceProfilesTest.kt58 val request = buildRequest(deviceProfile = profile) in <lambda>()
86 val request = buildRequest(deviceProfile = profile) in <lambda>()
100 val request = buildRequest(deviceProfile = null) in <lambda>()
111 private fun buildRequest(deviceProfile: String?) = AssociationRequest.Builder() in <lambda>()
112 .apply { deviceProfile?.let { setDeviceProfile(it) } } in <lambda>()
DAssociationRequestBuilderTest.kt48 assertNull(deviceProfile) in test_defaultValues()
75 assertEquals(actual = deviceProfile, expected = DEVICE_PROFILE_WATCH) in test_setters()
DAssociateSelfManagedTest.kt91 assertNull(deviceProfile) in test_associate_selfManaged_nullProfile_leadsToNoUiFlow()
129 assertEquals(actual = deviceProfile, expected = ROLE_WATCH) in test_associate_selfManaged_alreadyRoleHolder_leadsToNoUiFlow()
DAssociationInfoBuilderTest.kt62 assertEquals(actual = newAssociationInfo.deviceProfile, expected = DEVICE_PROFILE_WATCH) in <lambda>()
/cts/tests/tests/virtualdevice/common/src/android/virtualdevice/cts/common/
DFakeAssociationRule.java83 public FakeAssociationRule(String deviceProfile) { in FakeAssociationRule() argument
84 mDeviceProfile = deviceProfile; in FakeAssociationRule()