| 1 | <?php |
||
| 10 | class RequestTest extends TestCase |
||
| 11 | { |
||
| 12 | protected $request; |
||
| 13 | |||
| 14 | public function setUp() |
||
| 19 | |||
| 20 | public function testResponseInstance() |
||
| 25 | |||
| 26 | public function testBadAuthentication() |
||
| 35 | |||
| 36 | public function testSuccessfullGetResponse() |
||
| 37 | { |
||
| 38 | $response = $this->request->get('/units', ['demo' => 'true']); |
||
| 39 | |||
| 40 | $this->assertTrue($response->isSuccess()); |
||
| 41 | } |
||
| 42 | |||
| 43 | public function testFailedGetResponse() |
||
| 49 | } |
||
| 50 |