Ejemplo n.º 1
0
 /**
  * @covers Mage_Testlink_Listener::addSkippedTest
  */
 public function testAddSkippedTest()
 {
     $test = new Mage_Selenium_TestCase();
     $this->_listenerMock->expects($this->once())->method('notifyObservers');
     $this->_listenerMock->addSkippedTest($test, new Exception("TestException"), time());
 }