Skip to content

Commit e8c941a

Browse files
committed
test: custom response handler
1 parent efd2f71 commit e8c941a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

test/Fixtures/MyResponseHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class MyResponseHandler implements ResponseHandlerInterface
99
public function getSupportedPayloadTypes(): array
1010
{
1111
return [
12-
MyResponseHandler::class,
12+
MyResponsePayload::class,
1313
];
1414
}
1515

test/PitchAdrBundleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
use Pitch\AdrBundle\Action\ActionProxy;
55
use Pitch\AdrBundle\Fixtures\MyException;
66
use Pitch\AdrBundle\Fixtures\MyResponseHandler;
7+
use Pitch\AdrBundle\Fixtures\MyResponsePayload;
78
use Pitch\AdrBundle\PitchAdrBundle;
89
use Pitch\Annotation\PitchAnnotationBundle;
910
use RuntimeException;
@@ -141,5 +142,9 @@ public function testResponder()
141142
$event = $this->dispatchViewEvent('foo');
142143

143144
$this->assertEquals(['value' => 'foo'], $event->getControllerResult());
145+
146+
$event = $this->dispatchViewEvent(new MyResponsePayload());
147+
148+
$this->assertEquals(['value' => 'foo'], $event->getControllerResult());
144149
}
145150
}

0 commit comments

Comments
 (0)