예제 #1
0
파일: test_view.php 프로젝트: AF83/toupti
 public function testAddNotificationArray()
 {
     View::useLib('Mock');
     $view = new View();
     $view->notify(array('success', 'reload'));
     $this->assertEqual('reload', array_pop($view->getNotifs()));
     $this->assertEqual(2, count($view->getNotifs()));
 }