ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/TestSuite/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/vendor/phpro/grumphp/src/TestSuite/TestSuite.php

<?php

declare(strict_types=1);

namespace GrumPHP\TestSuite;

class TestSuite implements TestSuiteInterface
{
    /**
     * @var string
     */
    private $name;

    /**
     * @var array
     */
    private $taskNames = [];

    /**
     * TestSuite constructor.
     */
    public function __construct(string $name, array $taskNames)
    {
        $this->taskNames = $taskNames;
        $this->name = $name;
    }

    public function getName(): string
    {
        return $this->name;
    }

    public function getTaskNames(): array
    {
        return $this->taskNames;
    }
}

Zerion Mini Shell 1.0