| 1 | <?php |
||
| 13 | class AbstractRequestTest extends Base |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var AbstractRequest |
||
| 17 | */ |
||
| 18 | private $request; |
||
| 19 | private $config = ['username' => 'username']; |
||
| 20 | |||
| 21 | public function setUp() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @expectedException \RuntimeException |
||
| 29 | */ |
||
| 30 | public function testGetResponseBeforeSend() |
||
| 34 | |||
| 35 | public function testGetParameters() |
||
| 39 | } |
||
| 40 |