| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-codeception/src/Internal/TestStartInfo.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\Codeception\Internal;
final class TestStartInfo
{
public function __construct(
private string $containerUuid,
private string $testUuid,
) {
}
public function getContainerUuid(): string
{
return $this->containerUuid;
}
public function getTestUuid(): string
{
return $this->testUuid;
}
}