/**
  * Test method for the <tt>getADM()</tt> and <tt>setADM($aDM)</tt> functions.
  */
 public function testGetSetADM()
 {
     $notification = new Notification();
     $this->assertNull($notification->getADM());
     $aDM = new ADM();
     $this->assertSame($notification, $notification->setADM($aDM));
     $this->assertSame($aDM, $notification->getADM());
 }