public function run()
 {
     try {
         parent::run();
     } catch (\PHPUnit_Framework_AssertionFailedError $e) {
         throw new ConditionalAssertionFailed($e->getMessage(), $e->getCode(), $e);
     }
 }
Ejemplo n.º 2
0
 public function run(ModuleContainer $container = null)
 {
     try {
         parent::run($container);
     } catch (\PHPUnit_Framework_AssertionFailedError $e) {
         throw new ConditionalAssertionFailed($e->getMessage(), $e->getCode(), $e);
     }
 }