spec\LdapTools\Object\LdapObjectSpec::it_should_properly_check_whether_an_attribute_exists PHP 메소드

it_should_properly_check_whether_an_attribute_exists() 공개 메소드

    function it_should_properly_check_whether_an_attribute_exists()
    {
        $this->has('foo')->shouldBeEqualTo(false);
        $this->has('lastName')->shouldBeEqualTo(true);
    }
LdapObjectSpec