Ejemplo n.º 1
0
 public function testTouch()
 {
     $temp = new TempFile();
     $temp->touch(23, 42);
     $this->assertSame(23, $temp->getModificationTime());
     $this->assertSame(42, $temp->getAccessTime());
 }