@@ -33,7 +33,7 @@ class ForgotPasswordControllerTest extends AbstractControllerTestCase
33
33
* @var MockObject
34
34
*/
35
35
private $ serviceMock ;
36
-
36
+
37
37
/**
38
38
* @var \Laminas\ServiceManager\ServiceManager
39
39
*/
@@ -131,14 +131,6 @@ public function testIndexAction_WithPostRequest_WhenUserCannotBeFoundByUsernameO
131
131
$ this ->formMock ->expects ($ this ->once ())
132
132
->method ('isValid ' )
133
133
->willReturn (true );
134
-
135
- $ this ->formMock ->expects ($ this ->once ())
136
- ->method ('getInputFilter ' )
137
- ->willReturn (new ForgotPasswordInputFilter ());
138
-
139
- $ this ->serviceMock ->expects ($ this ->once ())
140
- ->method ('proceed ' )
141
- ->willThrowException (new Exception \UserNotFoundException ());
142
134
143
135
$ result = $ this ->controller ->dispatch ($ request );
144
136
@@ -167,14 +159,6 @@ public function testIndexAction_WithPostRequest_WhenUserDoesNotHaveAnEmail()
167
159
->method ('isValid ' )
168
160
->willReturn (true );
169
161
170
- $ this ->formMock ->expects ($ this ->once ())
171
- ->method ('getInputFilter ' )
172
- ->willReturn (new ForgotPasswordInputFilter ());
173
-
174
- $ this ->serviceMock ->expects ($ this ->once ())
175
- ->method ('proceed ' )
176
- ->willThrowException (new Exception \UserDoesNotHaveAnEmailException ());
177
-
178
162
$ result = $ this ->controller ->dispatch ($ request );
179
163
180
164
$ mvcEvent = new MvcEvent ();
@@ -211,15 +195,7 @@ public function testIndexAction_WithPostRequest_WhenUnexpectedExceptionHasOccurr
211
195
->method ('isValid ' )
212
196
->willReturn (true );
213
197
214
- $ this ->formMock ->expects ($ this ->once ())
215
- ->method ('getInputFilter ' )
216
- ->willReturn (new ForgotPasswordInputFilter ());
217
-
218
- $ this ->serviceMock ->expects ($ this ->once ())
219
- ->method ('proceed ' )
220
- ->willThrowException (new \LogicException ());
221
-
222
- $ result = $ this ->controller ->dispatch ($ request );
198
+ $ result = $ this ->controller ->dispatch ($ request );
223
199
224
200
$ expected = array (
225
201
'form ' => $ this ->formMock
@@ -252,13 +228,6 @@ public function testIndexAction_WithPostRequest()
252
228
->method ('isValid ' )
253
229
->willReturn (true );
254
230
255
- $ this ->formMock ->expects ($ this ->once ())
256
- ->method ('getInputFilter ' )
257
- ->willReturn (new ForgotPasswordInputFilter ());
258
-
259
- $ this ->serviceMock ->expects ($ this ->once ())
260
- ->method ('proceed ' );
261
-
262
231
$ result = $ this ->controller ->dispatch ($ request );
263
232
264
233
$ expected = array (
0 commit comments