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