public function testGetSetNotifiedPersonDeclarations()
 {
     $expectedHasNotifiedPersons = true;
     $this->assertFalse($this->poa->hasNotifiedPersons());
     $this->assertEquals('I', $this->poa->getNotifiedPersonPermissionBy());
     $this->poa->setUsesNotifiedPersons($expectedHasNotifiedPersons);
     $this->assertTrue($this->poa->hasNotifiedPersons());
     $this->poa->setNotifiedPersonPermissionBy('We');
     $this->assertEquals('We', $this->poa->getNotifiedPersonPermissionBy());
 }