| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/TestInfo.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\Codeception\Internal;
final class TestInfo
{
public function __construct(
private object $originalTest,
private string $signature,
private ?string $class = null,
private ?string $method = null,
private ?string $dataLabel = null,
private ?string $host = null,
private ?string $thread = null,
) {
}
public function getOriginalTest(): object
{
return $this->originalTest;
}
public function getSignature(): string
{
return $this->signature;
}
public function getClass(): ?string
{
return $this->class;
}
public function getMethod(): ?string
{
return $this->method;
}
public function getDataLabel(): ?string
{
return $this->dataLabel;
}
public function getHost(): ?string
{
return $this->host;
}
public function getThread(): ?string
{
return $this->thread;
}
}