org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::rmdirCanRemoveEmptyDirectory PHP 메소드

rmdirCanRemoveEmptyDirectory() 공개 메소드

    public function rmdirCanRemoveEmptyDirectory()
    {
        vfsStream::newDirectory('empty')->at($this->foo);
        $this->assertTrue($this->foo->hasChild('empty'));
        $this->assertTrue(rmdir($this->fooURL . '/empty'));
        $this->assertFalse($this->foo->hasChild('empty'));
    }