Nwidart\Modules\tests\BaseTestCase::setUp PHP Метод

setUp() публичный Метод

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        // $this->setUpDatabase();
    }

Usage Example

 public function setUp()
 {
     parent::setUp();
     $this->modulePath = base_path('modules/Blog');
     $this->finder = $this->app['files'];
     $this->artisan('module:make', ['name' => ['Blog']]);
 }
All Usage Examples Of Nwidart\Modules\tests\BaseTestCase::setUp