Ejemplo n.º 1
0
 /**
  * Test method for the <tt>getAndroid()</tt> and <tt>setAndroid($android)</tt> functions.
  */
 public function testGetSetAndroid()
 {
     $notification = new Notification();
     $this->assertNull($notification->getAndroid());
     $android = new Android();
     $this->assertSame($notification, $notification->setAndroid($android));
     $this->assertSame($android, $notification->getAndroid());
 }