AppserverIo\Appserver\Naming\NamingDirectoryTest::testOneLevelDescendingRecursiveSearch PHP Метод

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

Test the descending recursive search on a directory tree with a one level structure.
public testOneLevelDescendingRecursiveSearch ( ) : void
Результат void
    public function testOneLevelDescendingRecursiveSearch()
    {
        // create the one level tree
        $this->namingDirectory->createSubdirectory('level1');
        // bind a value and search recursive
        $this->namingDirectory->bind($name = 'php:level1/test', $value = 'testValue');
        $this->assertSame($this->namingDirectory->search($name), $value);
    }