Your IP : 216.73.216.158


Current Path : /home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/
Upload File :
Current File : //home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/CeptInfoBuilder.php

<?php

declare(strict_types=1);

namespace Qameta\Allure\Codeception\Internal;

use Codeception\Test\Cept;

final class CeptInfoBuilder implements TestInfoBuilderInterface
{
    public function __construct(
        private Cept $test,
    ) {
    }

    public function build(?string $host, ?string $thread): TestInfo
    {
        return new TestInfo(
            originalTest: $this->test,
            signature: $this->test->getSignature(),
            class: $this->test->getName(),
            method: $this->test->getName(),
            host: $host,
            thread: $thread,
        );
    }
}