setAddedDate() 공개 메소드

Set the added date
public setAddedDate ( DateTime $added ) : Image
$added DateTime When the image was added
리턴 Image
예제 #1
0
파일: ImageTest.php 프로젝트: imbo/imbo
 /**
  * @covers Imbo\Model\Image::setAddedDate
  * @covers Imbo\Model\Image::getAddedDate
  */
 public function testCanSetAndGetTheAddedDate()
 {
     $date = $this->getMock('DateTime');
     $this->assertNull($this->image->getAddedDate());
     $this->assertSame($this->image, $this->image->setAddedDate($date));
     $this->assertSame($date, $this->image->getAddedDate());
 }