setUpdatedDate() public method

Set the updated date
public setUpdatedDate ( DateTime $updated ) : Image
$updated DateTime When the image was updated
return Image
コード例 #1
0
ファイル: ImageTest.php プロジェクト: imbo/imbo
 /**
  * @covers Imbo\Model\Image::setUpdatedDate
  * @covers Imbo\Model\Image::getUpdatedDate
  */
 public function testCanSetAndGetTheUpdatedDate()
 {
     $date = $this->getMock('DateTime');
     $this->assertNull($this->image->getUpdatedDate());
     $this->assertSame($this->image, $this->image->setUpdatedDate($date));
     $this->assertSame($date, $this->image->getUpdatedDate());
 }