Your IP : 216.73.216.158


Current Path : /home/rtorresani/www/vendor/allure-framework/allure-phpunit/src/
Upload File :
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;
    }
}