protected function TestCase::onNotSuccessfulTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
Namespace
Behat\Mink\Tests\DriverCode
protected function onNotSuccessfulTest(\Exception $e) {
if ($e instanceof UnsupportedDriverActionException) {
$this
->markTestSkipped($e
->getMessage());
}
parent::onNotSuccessfulTest($e);
}