コード例 #1
0
ファイル: EventTest.php プロジェクト: bara0801/kd_calendar
 /**
  * @test
  */
 public function setOrganizerForOrganizerSetsOrganizer()
 {
     $organizerFixture = new \KevinDitscheid\KdCalendar\Domain\Model\Organizer();
     $this->subject->setOrganizer($organizerFixture);
     $this->assertAttributeEquals($organizerFixture, 'organizer', $this->subject);
 }