spec\LdapTools\Query\LdapQuerySpec::it_should_allow_setting_the_query_operation PHP Метод

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

    function it_should_allow_setting_the_query_operation()
    {
        $operation = clone $this->operation;
        $operation->setBaseDn('dc=foo,dc=bar');
        $this->setQueryOperation($operation);
        $this->getQueryOperation()->getBaseDn()->shouldBeEqualTo('dc=foo,dc=bar');
    }
LdapQuerySpec