Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function testStore() |
||
17 | { |
||
18 | $response = $this-action('POST', 'Crystoline\LaraRestApiTestController@yourAction', ['links' => 'link1 \n link2']); |
||
19 | // you can check if response was ok |
||
20 | $this->assertTrue($response->isOk(), "Custom message if something went wrong"); |
||
21 | // or if view received variable |
||
22 | $this->assertViewHas('links', ['link1', 'link2']); |
||
23 | } |
||
25 |