spec\LdapTools\Hydrator\OperationHydratorSpec::it_should_add_controls_on_an_operation_going_to_ldap PHP Метод

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

    function it_should_add_controls_on_an_operation_going_to_ldap($connection)
    {
        $operation = new QueryOperation('(foo=bar');
        $this->setLdapObjectSchema($this->schema);
        $this->setLdapConnection($connection);
        $this->hydrateToLdap($operation)->getControls()->shouldBeEqualTo([]);
        $control = new LdapControl('foo');
        $this->schema->setControls($control);
        $this->hydrateToLdap($operation)->getControls()->shouldBeEqualTo([$control]);
    }