org\bovigo\vfs\vfsStreamWrapperFileTestCase::file_get_contents PHP Method

file_get_contents() public method

assert that file_get_contents() delivers correct file contents
public file_get_contents ( )
    public function file_get_contents()
    {
        $this->assertEquals('baz2', file_get_contents($this->baz2URL));
        $this->assertEquals('baz 1', file_get_contents($this->baz1URL));
        $this->assertFalse(@file_get_contents($this->barURL));
        $this->assertFalse(@file_get_contents($this->fooURL));
    }