spec\LdapTools\AttributeConverter\ConvertWindowsSidSpec::it_should_return_a_searchable_hex_sid_for_well_known_sids_when_calling_toLdap PHP Метод

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

    function it_should_return_a_searchable_hex_sid_for_well_known_sids_when_calling_toLdap()
    {
        $this->setOperationType(AttributeConverterInterface::TYPE_SEARCH_TO);
        $this->toLdap($this->sidBuiltinString)->shouldBeEqualTo($this->sidBuiltinHex);
        $this->toLdap($this->sidNobodyString)->shouldBeEqualTo($this->sidNobodyHex);
        $this->toLdap($this->sidSelfString)->shouldBeEqualTo($this->sidSelfHex);
        $this->toLdap($this->sidNullString)->shouldBeEqualTo($this->sidNullHex);
    }