Example #1
0
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('addresses');
     $this->addressFactory = new AddressFactory();
 }
Example #2
0
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('people', 'addresses');
     $this->personFactory = App::make('\\Ixudra\\Portfolio\\Services\\Factories\\PersonFactory');
 }
Example #3
0
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('customers');
     $this->customerFactory = new CustomerFactory();
 }
Example #4
0
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('companies', 'addresses', 'people');
     $this->companyFactory = App::make('\\Ixudra\\Portfolio\\Services\\Factories\\CompanyFactory');
 }
Example #5
0
 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();
 }