Your IP : 216.73.217.13


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/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;
    }
}