Searched refs:mockHandler (Results 1 – 13 of 13) sorted by relevance
129 this.mockHandler.stubs().initialize().will(callFunction(function() {132 this.mockHandler.stubs().launchApp(ANYTHING);155 this.mockHandler.expects(once()).launchApp(162 this.mockHandler.expects(once()).setSpeechRecognitionState('READY');164 this.mockHandler.expects(once()).setSpeechRecognitionState('RECOGNIZING');169 this.mockHandler.expects(once()).setSpeechRecognitionState('READY');177 this.mockHandler.expects(once()).setSpeechRecognitionState('RECOGNIZING');182 this.mockHandler.expects(once()).setSpeechRecognitionState('STOPPING');183 this.mockHandler.expects(once()).setSpeechRecognitionState('READY');191 this.mockHandler.expects(once()).setSpeechRecognitionState('READY');[all …]
29 private InternalMockHandler<T> mockHandler; field in InvocationNotifierHandler31 …public InvocationNotifierHandler(InternalMockHandler<T> mockHandler, MockCreationSettings settings… in InvocationNotifierHandler() argument32 this.mockHandler = mockHandler; in InvocationNotifierHandler()38 Object returnedValue = mockHandler.handle(invocation); in handle()69 return mockHandler.getMockSettings(); in getMockSettings()73 return mockHandler.voidMethodStubbable(mock); in voidMethodStubbable()77 mockHandler.setAnswersForStubbing(answers); in setAnswersForStubbing()81 return mockHandler.getInvocationContainer(); in getInvocationContainer()
56 this.mockHandler.stubs().getKioskAppSettings().60 this.mockHandler.stubs().addKioskApp(ANYTHING);61 this.mockHandler.stubs().removeKioskApp(ANYTHING);62 this.mockHandler.stubs().enableKioskAutoLaunch(ANYTHING);63 this.mockHandler.stubs().disableKioskAutoLaunch(ANYTHING);92 this.mockHandler.expects(once()).addKioskApp([testAppId]);103 this.mockHandler.expects(once()).addKioskApp([testAppId]);112 this.mockHandler.expects(once()).addKioskApp([testAppId]);121 this.mockHandler.expects(once()).removeKioskApp([appId]);131 this.mockHandler.expects(once()).enableKioskAutoLaunch([appId]).[all …]
29 this.mockHandler.stubs().refreshDictionaryWords().33 this.mockHandler.stubs().addDictionaryWord(ANYTHING);34 this.mockHandler.stubs().removeDictionaryWord(ANYTHING);44 this.mockHandler.expects(once()).addDictionaryWord([testWord]).51 this.mockHandler.expects(once()).removeDictionaryWord([testWord]).
86 this.mockHandler.stubs().fetchPrefs(ANYTHING);87 this.mockHandler.stubs().observePrefs(ANYTHING);88 this.mockHandler.stubs().coreOptionsUserMetricsAction(ANYTHING);109 this.mockHandler.expects(once()).setBooleanPref(trueListValue);149 this.mockHandler.expects(once()).defaultZoomFactorAction(NOT_NULL).197 this.mockHandler.expects(once()).setBooleanPref(249 this.mockHandler.expects(once()).setBooleanPref(259 this.mockHandler.expects(once()).setBooleanPref(
62 this.mockHandler.expects(once()).populateCertificateManager();156 this.mockHandler.expects(once()).populateCertificateManager().will(195 this.mockHandler.expects(once()).viewCertificate(['c1']);231 this.mockHandler.expects(once()).deleteCertificate(['c1']).will(callFunction(
131 this.mockHandler.expects(once()).addStartupPage([NEW_PAGE, 0]);140 this.mockHandler.expects(once()).dragDropStartupPage([0, [1].join()]);
26 this.mockHandler.stubs().retryDictionaryDownload().95 this.mockHandler.expects(once()).retryDictionaryDownload().
46 this.mockHandler.expects(once()).openAdvancedFontSettingsOptions();
76 this.mockHandler.expects(once()).bluetoothEnableChange([true]).will(150 this.mockHandler.expects(once()).findBluetoothDevices();160 this.mockHandler.expects(once()).stopBluetoothDeviceDiscovery();161 this.mockHandler.expects(once()).updateBluetoothDevice(208 this.mockHandler.expects(once()).updateBluetoothDevice(251 this.mockHandler.expects(once()).updateBluetoothDevice(269 this.mockHandler.expects(once()).updateBluetoothDevice(287 this.mockHandler.expects(once()).updateBluetoothDevice(
68 this.mockHandler.expects(once()).SyncSetupShowSetupUI().76 this.mockHandler.expects(once()).SyncSetupStartSignIn().85 this.mockHandler.expects(once()).SyncSetupConfigure(ANYTHING).
293 this.mockHandler.expects(once()).329 this.mockHandler.expects(once()).
30 MockHandler mockHandler = new MockHandlerFactory().create(settings); in createMock() local32 T mock = mockMaker.createMock(settings, mockHandler); in createMock()