コード例 #1
0
ファイル: DayTest.php プロジェクト: morloderex/CalendR
 public function testToString()
 {
     $day = new Day(new \DateTime(date('Y-m-d')), $this->prophesize(FactoryInterface::class)->reveal());
     $this->assertSame($day->getBegin()->format('l'), (string) $day);
 }
コード例 #2
0
ファイル: DayTest.php プロジェクト: joostvanderborg/CalendR
 public function testToString()
 {
     $day = new Day(new \DateTime(date('Y-m-d')));
     $this->assertSame($day->getBegin()->format('l'), (string) $day);
 }