Beispiel #1
0
 public function testget_notification_recipients()
 {
     $meeting = new Meeting();
     //test without special_notification
     $result = $meeting->get_notification_recipients();
     $this->assertTrue(is_array($result));
     //test with special_notification
     $meeting->special_notification = 1;
     $result = $meeting->get_notification_recipients();
     $this->assertTrue(is_array($result));
 }