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/Incomplete.php

<?php

declare(strict_types=1);

namespace Codeception\Step;

use Codeception\Lib\ModuleContainer;
use Codeception\Step as CodeceptionStep;
use PHPUnit\Framework\IncompleteTestError;

class Incomplete extends CodeceptionStep
{
    public function run(ModuleContainer $container = null): void
    {
        throw new IncompleteTestError($this->getAction());
    }

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