コード例 #1
0
ファイル: DateTimeTest.php プロジェクト: nresni/common
    public function testSetTimestamp()
    {
        $a = new DateTime("2009-12-12");

        $this->setExpectedException("Doctrine\Common\DateTime\ImmutableException");
        $a->setTimestamp(time());
    }