public function testGetSetCaseAttorneySingular()
 {
     $this->assertFalse($this->poa->getCaseAttorneySingular());
     $this->poa->setCaseAttorneySingular(true);
     $this->assertTrue($this->poa->getCaseAttorneySingular());
     $this->poa->setCaseAttorneySingular();
     $this->assertFalse($this->poa->getCaseAttorneySingular());
 }