spec\LdapTools\Hydrator\ArrayHydratorSpec::it_should_return_the_dn_attribute_even_if_it_wasnt_selected PHP Метод

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

    function it_should_return_the_dn_attribute_even_if_it_wasnt_selected()
    {
        $schema = new LdapObjectSchema('ad', 'user');
        $schema->setAttributeMap(['firstName' => 'givenName', 'lastName' => 'sn']);
        $this->setLdapObjectSchema($schema);
        $this->setSelectedAttributes(['givenName', 'lastName']);
        $this->hydrateFromLdap($this->ldapEntries[0])->shouldHaveKey('dn');
    }