コード例 #1
0
ファイル: PhotoTest.php プロジェクト: Pamoi/photo-gallery-api
 public function testConstruct()
 {
     $photo = new Photo();
     $this->assertInstanceOf('\\DateTime', $photo->getDate());
     $this->assertInstanceOf('\\DateTime', $photo->getUploadDate());
     $this->assertInstanceOf('Doctrine\\Common\\Collections\\ArrayCollection', $photo->getComments());
 }