public function testGetSetPaymentExemption()
 {
     $this->assertEquals(Lpa::PAYMENT_OPTION_NOT_SET, $this->poa->getPaymentExemption());
     $this->poa->setPaymentExemption(Lpa::PAYMENT_OPTION_FALSE);
     $this->assertEquals(Lpa::PAYMENT_OPTION_FALSE, $this->poa->getPaymentExemption());
 }