1 | <?php |
||
17 | abstract class HttpTestCase extends PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | /** |
||
20 | * @var Client |
||
21 | */ |
||
22 | protected $client; |
||
23 | |||
24 | public function setUp() |
||
30 | |||
31 | /** |
||
32 | * @param string $method |
||
33 | * @param string $uri |
||
34 | * @param array $get |
||
35 | * @param array $post |
||
36 | * |
||
37 | * @return ResponseInterface |
||
38 | */ |
||
39 | public function request($method, $uri, array $get = [], array $post = []) |
||
52 | } |
||
53 |