| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class ResponseFactoryMiddlewareTest extends UnitTestCase |
||
| 18 | { |
||
| 19 | public function setUp() |
||
| 20 | { |
||
| 21 | $this->request = $this->mockRequest(); |
||
|
|
|||
| 22 | $this->response = $this->mockResponse(); |
||
| 23 | $this->factory = $this->mockMessageFactory(); |
||
| 24 | |||
| 25 | $this->middleware = new ResponseFactoryMiddleware($this->factory); |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testApplyRequest() |
||
| 31 | } |
||
| 32 | |||
| 33 | public function testApplyResponse() |
||
| 39 | } |
||
| 40 | } |
||
| 41 |