public function setUp()
 {
     parent::setUp();
     $this->truncateTables('companies');
     $this->companyRepository = new EloquentCompanyRepository();
 }
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('addresses');
     $this->addressRepository = new EloquentAddressRepository();
 }
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('project_types');
     $this->projectTypeRepository = new EloquentProjectTypeRepository();
 }
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('people');
     $this->personRepository = new EloquentPersonRepository();
 }
 public function setUp()
 {
     parent::setUp();
     $this->truncateTables('customers');
     $this->customerRepository = new EloquentCustomerRepository();
 }