spec\LdapTools\Connection\LdapConnectionSpec::it_should_honor_an_explicitly_set_schema_name_if_present PHP Метод

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

    function it_should_honor_an_explicitly_set_schema_name_if_present()
    {
        $config = new DomainConfiguration('example.com');
        $config->setServers(['test'])->setBaseDn('dc=example,dc=local')->setLazyBind(true)->setSchemaName('foo');
        $this->beConstructedWith($config);
        $this->getConfig()->getSchemaName()->shouldBeEqualTo('foo');
    }