/**
  * @depends testSetIsExactSetsIsExact
  */
 public function testIsExactReturnsIsExact()
 {
     $this->acl->setIsExact(true);
     $this->assertTrue($this->acl->isExact());
     $this->acl->setIsExact(false);
     $this->assertFalse($this->acl->isExact());
 }