/** * */ public function setUp() { parent::__construct(); $this->refreshApplication(); $this->assetPipeline = new AsgardAssetPipeline($this->app['Modules\\Core\\Foundation\\Asset\\Manager\\AssetManager']); $this->assetManager = $this->app['Modules\\Core\\Foundation\\Asset\\Manager\\AssetManager']; }
public function setUp() { parent::setUp(); /** @var \Illuminate\Console\Application $artisan */ $artisan = $this->app->make('Illuminate\\Console\\Application'); $artisan->call('module:migrate', ['module' => 'Blog']); $this->post = app('Modules\\Blog\\Repositories\\PostRepository'); $this->tag = app('Modules\\Blog\\Repositories\\TagRepository'); }
public function setUp() { parent::__construct(); $this->assetManager = new AsgardAssetManager(); }
public function setUp() { parent::setUp(); $this->theme = new Theme('demo', $this->getPath()); }
/** * */ public function setUp() { parent::setUp(); $this->repository = new ThemeManager($this->app, $this->getPath()); }