Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/applications/defaultapps/
DDefaultAssistantPickerEntryPreferenceControllerTest.java33 import com.android.car.settings.testutils.ShadowVoiceInteractionServiceInfo;
49 @Config(shadows = {ShadowSecureSettings.class, ShadowVoiceInteractionServiceInfo.class,
79 ShadowVoiceInteractionServiceInfo.reset(); in tearDown()
113 ShadowVoiceInteractionServiceInfo.setSupportsAssist(resolveInfo.serviceInfo, false); in getSettingIntent_hasAssistant_noAssistSupport_returnsNull()
114 ShadowVoiceInteractionServiceInfo.setSettingsActivity(resolveInfo.serviceInfo, in getSettingIntent_hasAssistant_noAssistSupport_returnsNull()
138 ShadowVoiceInteractionServiceInfo.setSupportsAssist(resolveInfo.serviceInfo, true); in getSettingIntent_hasAssistant_supportsAssist_noSettingsActivity_returnsNull()
139 ShadowVoiceInteractionServiceInfo.setSettingsActivity(resolveInfo.serviceInfo, null); in getSettingIntent_hasAssistant_supportsAssist_noSettingsActivity_returnsNull()
162 ShadowVoiceInteractionServiceInfo.setSupportsAssist(resolveInfo.serviceInfo, true); in getSettingIntent_hasAssistant_supportsAssist_hasSettingsActivity_returnsIntent()
163 ShadowVoiceInteractionServiceInfo.setSettingsActivity(resolveInfo.serviceInfo, in getSettingIntent_hasAssistant_supportsAssist_hasSettingsActivity_returnsIntent()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/applications/assist/
DVoiceInputInfoProviderTest.java25 import com.android.car.settings.testutils.ShadowVoiceInteractionServiceInfo;
38 @Config(shadows = {ShadowApplicationPackageManager.class, ShadowVoiceInteractionServiceInfo.class})
54 ShadowVoiceInteractionServiceInfo.reset(); in tearDown()
63 ShadowVoiceInteractionServiceInfo.setRecognitionService(resolveInfo.serviceInfo, in getInteractionInfoList_hasElement()
DDefaultVoiceInputPickerEntryPreferenceControllerTest.java40 import com.android.car.settings.testutils.ShadowVoiceInteractionServiceInfo;
60 @Config(shadows = {ShadowSecureSettings.class, ShadowVoiceInteractionServiceInfo.class})
88 ShadowVoiceInteractionServiceInfo.reset(); in tearDown()
208 ShadowVoiceInteractionServiceInfo.setSettingsActivity(resolveInfo.serviceInfo, in getSettingIntent_validInput_returnsIntent()
DDefaultVoiceInputPickerPreferenceControllerTest.java32 import com.android.car.settings.testutils.ShadowVoiceInteractionServiceInfo;
47 @Config(shadows = {ShadowSecureSettings.class, ShadowVoiceInteractionServiceInfo.class})
71 ShadowVoiceInteractionServiceInfo.reset(); in tearDown()
227 ShadowVoiceInteractionServiceInfo.setRecognitionService(resolveInfo.serviceInfo, in setCurrentDefault_typeVoiceInteractionInfo_setsServices()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowVoiceInteractionServiceInfo.java31 public class ShadowVoiceInteractionServiceInfo { class