1 | <?php |
||
11 | abstract class BaseTestCase extends TestCase |
||
12 | { |
||
13 | /** |
||
14 | * @return Application |
||
15 | */ |
||
16 | protected function createApp() |
||
23 | |||
24 | /** |
||
25 | * @param string $method |
||
26 | * @param string $uri |
||
27 | * @return ServerRequestInterface |
||
28 | */ |
||
29 | protected function createRequest($method, $uri) |
||
40 | |||
41 | /** |
||
42 | * @param ServerRequestInterface $request |
||
43 | * @return ResponseInterface |
||
44 | */ |
||
45 | protected function call(ServerRequestInterface $request) |
||
53 | } |
||
54 |