/**
  * Run test
  *
  * Catch exception and decorate it with last request data
  */
 protected function runTest()
 {
     try {
         parent::runTest();
     } catch (Exception $e) {
         throw $this->_decorateExeption($e);
     }
 }