Level 7
An example I use where $this->master is an array of params. There are more command available to interrogate the response.
/**
* Test we can create a new resource
*
* @group barcode
* @covers ::store
* @test
*/
public function can_create()
{
$url = route('masters.store', $this->master );
$url = str_replace('http://:', '', $url);
$response = $this->post( $url, $this->master )
->seeJson()
->seeStatusCode( 200 );
}