public function vfsStreamWrapperTestCase::touchChangesAccessAndModificationTimeForFile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperTestCase.php \org\bovigo\vfs\vfsStreamWrapperTestCase::touchChangesAccessAndModificationTimeForFile()
@test @group issue_11 @requires PHP 5.4.0
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperTestCase.php, line 675
Class
Namespace
org\bovigo\vfsCode
public function touchChangesAccessAndModificationTimeForFile() {
$this
->assertTrue(touch($this->baz1URL, 303, 313));
$this
->assertEquals(303, $this->baz1
->filemtime());
$this
->assertEquals(313, $this->baz1
->fileatime());
}