public function testGetSetNotificationDateNulls()
 {
     $expectedDate = new \DateTime();
     $this->assertEmpty($this->poa->getNotificationDate());
     $this->poa->setNotificationDate();
     $this->assertEquals($expectedDate->format(OPGDateFormat::getDateFormat()), $this->poa->getNotificationDate()->format(OPGDateFormat::getDateFormat()));
 }