We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ae1b9 commit 0c10f7fCopy full SHA for 0c10f7f
Tests/Form/Handler/AuthorizeFormHandlerTest.php
@@ -354,6 +354,13 @@ public function testProcessWillHandleRequestOnPost()
354
->willReturn($this->form)
355
;
356
357
+ $this->form
358
+ ->expects($this->once())
359
+ ->method('isSubmitted')
360
+ ->with()
361
+ ->willReturn(true)
362
+ ;
363
+
364
$this->form
365
->expects($this->once())
366
->method('isValid')
@@ -413,6 +420,13 @@ public function testProcessWillHandleRequestOnPostAndWillProcessDataIfFormIsVali
413
420
414
421
415
422
423
424
425
426
427
428
429
416
430
417
431
418
432
0 commit comments