You are here

protected function TestCase::onNotSuccessfulTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/driver-testsuite/tests/TestCase.php \Behat\Mink\Tests\Driver\TestCase::onNotSuccessfulTest()

File

vendor/behat/mink/driver-testsuite/tests/TestCase.php, line 69

Class

TestCase

Namespace

Behat\Mink\Tests\Driver

Code

protected function onNotSuccessfulTest(\Exception $e) {
  if ($e instanceof UnsupportedDriverActionException) {
    $this
      ->markTestSkipped($e
      ->getMessage());
  }
  parent::onNotSuccessfulTest($e);
}