public function vfsStreamWrapperDirSeparatorTestCase::fileCanBeAccessedUsingWinDirSeparator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirSeparatorTestCase.php \org\bovigo\vfs\vfsStreamWrapperDirSeparatorTestCase::fileCanBeAccessedUsingWinDirSeparator()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperDirSeparatorTestCase.php, line 37
Class
- vfsStreamWrapperDirSeparatorTestCase
- Test that using windows directory separator works correct.
Namespace
org\bovigo\vfsCode
public function fileCanBeAccessedUsingWinDirSeparator() {
vfsStream::newFile('foo/bar/baz.txt')
->at($this->root)
->withContent('test');
$this
->assertEquals('test', file_get_contents('vfs://root/foo\\bar\\baz.txt'));
}