| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-phpunit/src/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-phpunit/src/ExceptionDetailsTrait.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\PHPUnit;
use Throwable;
trait ExceptionDetailsTrait
{
protected function onNotSuccessfulTest(Throwable $t): void
{
AllureAdapter::getInstance()->setLastException($t);
throw $t;
}
}