public function testGetSetCaseAttorneyJointly()
 {
     $this->assertFalse($this->poa->getCaseAttorneyJointly());
     $this->poa->setCaseAttorneyJointly(true);
     $this->assertTrue($this->poa->getCaseAttorneyJointly());
     $this->poa->setCaseAttorneyJointly();
     $this->assertFalse($this->poa->getCaseAttorneyJointly());
 }