org\bovigo\vfs\Issue104TestCase::vfsStreamCanHandleUrlEncodedPath PHP Метод

vfsStreamCanHandleUrlEncodedPath() публичный Метод

    public function vfsStreamCanHandleUrlEncodedPath()
    {
        $content = '<xs:schema targetNamespace="http://www.example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema">
                                    <xs:complexType name="myType"></xs:complexType>
                                </xs:schema>';
        $structure = array('foo bar' => array('schema.xsd' => $content));
        vfsStream::setup('root', null, $structure);
        $this->assertEquals($content, file_get_contents(vfsStream::url('root/foo bar/schema.xsd')));
    }