public function vfsStreamWrapperTestCase::touchCreatesNonExistingFile 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::touchCreatesNonExistingFile()
@test @group issue_11 @requires PHP 5.4.0
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperTestCase.php, line 664
Class
Namespace
org\bovigo\vfsCode
public function touchCreatesNonExistingFile() {
$this
->assertTrue(touch($this->fooURL . '/new.txt'));
$this
->assertTrue($this->foo
->hasChild('new.txt'));
}