/**
  * Test method for the <tt>getSafari()</tt> and <tt>setSafari($safari)</tt> functions.
  */
 public function testGetSetSafari()
 {
     $notification = new Notification();
     $this->assertNull($notification->getSafari());
     $safari = new Safari();
     $this->assertSame($notification, $notification->setSafari($safari));
     $this->assertSame($safari, $notification->getSafari());
 }