Exemplo n.º 1
0
 /**
  * Test method: getInfoAlerts().
  */
 public function testInfo()
 {
     $this->alert->addInfo('info_1');
     $this->alert->addInfo('info_2');
     $alerts = $this->alert->getInfoAlerts();
     $this->assertCount(2, $alerts);
     $this->assertEquals('info_1', $alerts[0]);
     $this->assertEquals('info_2', $alerts[1]);
 }