spec\LdapTools\Utilities\GPOLinkSpec::it_should_not_modify_an_option_that_is_already_set PHP 메소드

it_should_not_modify_an_option_that_is_already_set() 공개 메소드

    function it_should_not_modify_an_option_that_is_already_set()
    {
        $this->setIsEnabled(true);
        $this->getIsEnabled()->shouldEqual(true);
        $this->getOptionsFlag()->shouldBeEqualTo(0);
        $this->getIsEnforced()->shouldEqual(false);
        $this->setIsEnforced(false);
        $this->getIsEnforced()->shouldEqual(false);
        $this->setIsEnforced(true);
        $this->setIsEnforced(true);
        $this->getIsEnforced()->shouldEqual(true);
    }