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