Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Step/
Upload File :
Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Step/Skip.php

<?php

declare(strict_types=1);

namespace Codeception\Step;

use Codeception\Lib\ModuleContainer;
use Codeception\Step as CodeceptionStep;
use PHPUnit\Framework\SkippedTestError;
use PHPUnit\Framework\SkippedWithMessageException;
use PHPUnit\Runner\Version as PHPUnitVersion;

class Skip extends CodeceptionStep
{
    public function run(ModuleContainer $container = null): void
    {
        $skipMessage = $this->getAction();

        if (PHPUnitVersion::series() < 10) {
            throw new SkippedTestError($skipMessage);
        }

        throw new SkippedWithMessageException($skipMessage);
    }

    public function __toString(): string
    {
        return $this->getAction();
    }
}