Пример #1
0
 public function setUp()
 {
     parent::setUp();
     // init the
     $this->projects = $this->app->make($this->projectClass);
     // create a project for testing purposes
     $this->project = $this->projects->create(["name" => "testing", "human_name" => "Only a test Project"]);
 }
Пример #2
0
 public function setUp()
 {
     parent::setUp();
     $this->projects = $this->app->make($this->projectClass);
     $this->mailStatistics = $this->app->make($this->mailStatisticsClass);
     $this->categories = $this->app->make($this->categoryClass);
     $this->project = $this->projects->create(['name' => 'testing', 'human_name' => "Only for testing"]);
 }