Test open API service
php artisan make:test SampleTest
You can use above artisan command to make test command.
If you want to use repositories in Test file you have to follow below steps.
Step 1: Create setup function and add followings just like in constructors.
public function setUp(){ parent::setUp(); $this->application...
