1 | <?php |
||
11 | abstract class BaseTestCase extends TestCase |
||
12 | { |
||
13 | /** |
||
14 | * @var Application |
||
15 | */ |
||
16 | protected $app; |
||
17 | |||
18 | protected function setUp() |
||
25 | |||
26 | /** |
||
27 | * @param string $method |
||
28 | * @param string $uri |
||
29 | * @return ServerRequestInterface |
||
30 | */ |
||
31 | protected function createRequest($method, $uri) |
||
42 | |||
43 | /** |
||
44 | * @param ServerRequestInterface $request |
||
45 | * @return ResponseInterface |
||
46 | */ |
||
47 | protected function call(ServerRequestInterface $request) |
||
54 | } |
||
55 |