コード例 #1
0
ファイル: ArrangeFixture.php プロジェクト: kdh4242/timegrid
 /**
  * Arrange Fixture.
  *
  * @return void
  */
 protected function arrangeFixture()
 {
     // Given there is...
     // a Business owned by Me (User)
     $this->owner = $this->createUser();
     $this->issuer = $this->createUser();
     $this->business = $this->createBusiness();
     $this->business->owners()->save($this->owner);
     // And the Business provides a Service
     $this->service = $this->makeService();
     $this->business->services()->save($this->service);
     // And the Service has Vacancies to be reserved
     $this->vacancy = $this->makeVacancy();
     $this->vacancy->service()->associate($this->service);
     $this->business->vacancies()->save($this->vacancy);
     // And a Contact that holds an Appointment for that Service
     $this->contact = $this->createContact();
 }
コード例 #2
0
 protected function arrangeBusinessWithOwner()
 {
     $this->owner = $this->createUser();
     $this->business = $this->createBusiness();
     $this->business->owners()->save($this->owner);
     $this->serviceOne = $this->createService();
     $this->serviceTwo = $this->createService();
     $this->serviceThree = $this->createService();
     $this->business->services()->save($this->serviceOne);
     $this->business->services()->save($this->serviceTwo);
     $this->business->services()->save($this->serviceThree);
     $this->vacancy = $this->createVacancy(['business_id' => $this->business->id, 'service_id' => $this->serviceOne->id]);
 }
コード例 #3
0
 protected function arrangeBusinessWithOwner()
 {
     $this->owner = $this->createUser();
     $this->business = $this->createBusiness();
     $this->business->owners()->save($this->owner);
     $this->contactOne = $this->createContact();
     $this->contactTwo = $this->createContact();
     $this->contactThree = $this->createContact();
     $this->business->contacts()->save($this->contactOne);
     $this->business->contacts()->save($this->contactTwo);
     $this->business->contacts()->save($this->contactThree);
     $this->serviceOne = $this->createService();
     $this->serviceTwo = $this->createService();
     $this->serviceThree = $this->createService();
     $this->appointment = $this->makeAppointment($this->business, $this->createUser(), $this->contactOne);
     $this->appointment->save();
     $this->business->services()->save($this->serviceOne);
     $this->business->services()->save($this->serviceTwo);
     $this->business->services()->save($this->serviceThree);
 }
コード例 #4
0
 protected function arrangeBusinessWithOwner()
 {
     $this->owner = $this->createUser();
     $this->business = $this->createBusiness();
     $this->business->owners()->save($this->owner);
 }