コード例 #1
0
ファイル: EntityTest.php プロジェクト: carriercomm/pastebin-2
 public function testTimestamp()
 {
     $timestamp = new \DateTime();
     $paste = new Paste();
     $paste->setTimestamp($timestamp);
     $this->assertEquals($timestamp, $paste->getTimestamp());
 }