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

it_should_add_an_additional_attribute_when_calling_the_magical_add() 공개 메소드

    function it_should_add_an_additional_attribute_when_calling_the_magical_add()
    {
        $this->addEmailAddress('[email protected]');
        $this->getEmailAddress()->shouldBeArray();
        $this->getEmailAddress()->shouldContain('[email protected]');
        $this->getEmailAddress()->shouldContain('[email protected]');
    }
LdapObjectSpec