Home
last modified time | relevance | path

Searched refs:ShadowTextToSpeech (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/tts/
DTtsPlaybackPreferenceControllerTest.java45 import com.android.car.settings.testutils.ShadowTextToSpeech;
65 @Config(shadows = {ShadowTextToSpeech.class, ShadowTtsEngines.class,
96 ShadowTextToSpeech.setInstance(mTextToSpeech); in setUp()
138 ShadowTextToSpeech.reset(); in tearDown()
145 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in onCreate_startsCheckVoiceData()
202 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in voiceDataCheck_processActivityResult_checkSuccess_hasVoices_populatesPreference()
250 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in defaultLanguage_handlePreferenceChanged_passEmptyValue_setsDefault()
273 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in defaultLanguage_handlePreferenceChanged_passLocale_setsLocale()
296 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in defaultLanguage_handlePreferenceChanged_passLocale_setsSummary()
319 ShadowTextToSpeech.callInitializationCallbackWithStatus(TextToSpeech.SUCCESS); in speechRate_handlePreferenceChanged_updatesSecureSettings()
[all …]
DTtsPlaybackSettingsManagerTest.java33 import com.android.car.settings.testutils.ShadowTextToSpeech;
50 @Config(shadows = {ShadowTtsEngines.class, ShadowTextToSpeech.class, ShadowSecureSettings.class})
66 ShadowTextToSpeech.setInstance(mTts); in setUp()
81 ShadowTextToSpeech.reset(); in tearDown()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowTextToSpeech.java31 public class ShadowTextToSpeech { class