spec\LdapTools\Utilities\GPOLinkSpec::it_should_not_modify_an_option_that_is_already_set PHP Method

it_should_not_modify_an_option_that_is_already_set() public method

    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);
    }