| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-phpunit/src/Internal/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-phpunit/src/Internal/TestStartInfo.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\PHPUnit\Internal;
final class TestStartInfo
{
public function __construct(
private string $containerId,
private string $testId,
) {
}
public function getContainerId(): string
{
return $this->containerId;
}
public function getTestId(): string
{
return $this->testId;
}
}