public function setUp() { parent::setUp(); $this->truncateTables('addresses'); $this->addressFactory = new AddressFactory(); }
public function setUp() { parent::setUp(); $this->truncateTables('people', 'addresses'); $this->personFactory = App::make('\\Ixudra\\Portfolio\\Services\\Factories\\PersonFactory'); }
public function setUp() { parent::setUp(); $this->truncateTables('customers'); $this->customerFactory = new CustomerFactory(); }
public function setUp() { parent::setUp(); $this->truncateTables('companies', 'addresses', 'people'); $this->companyFactory = App::make('\\Ixudra\\Portfolio\\Services\\Factories\\CompanyFactory'); }
public function setUp() { parent::setUp(); $this->truncateTables('projects'); $this->personFactory = App::make('\\Ixudra\\Portfolio\\Services\\Factories\\ProjectFactory'); }
public function setUp() { parent::setUp(); $this->truncateTables('project_types'); $this->projectTypeFactory = new ProjectTypeFactory(); }