/** * @covers Time_DateTime::not_later_than */ public function testNot_later_than() { $t = new Time_DateTime(); $this->assertTrue($this->object->not_later_than($t)); $t->sub(new DateInterval('P1D')); $this->assertFalse($this->object->not_later_than($t)); $t->add(new DateInterval('P2D')); $this->assertTrue($this->object->not_later_than($t)); }