コード例 #1
0
 public function testIsMoment()
 {
     $m = new Moment();
     $this->assertFalse($m->isMoment('2012-12-01T12:00:00'));
     $this->assertTrue($m->isMoment(new Moment('2012-12-01T12:00:00')));
 }