org\bovigo\vfs\vfsStreamWrapperQuotaTestCase::writeLessThanQuotaWritesEverything PHP 메소드

writeLessThanQuotaWritesEverything() 공개 메소드

    public function writeLessThanQuotaWritesEverything()
    {
        $this->assertEquals(9, file_put_contents(vfsStream::url('root/file.txt'), '123456789'));
        $this->assertEquals('123456789', $this->root->getChild('file.txt')->getContent());
    }