Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/codeception/codeception/src/Codeception/Step/
Upload File :
Current File : /var/www/html/vendor/codeception/codeception/src/Codeception/Step/Incomplete.php

<?php
namespace Codeception\Step;

use Codeception\Step as CodeceptionStep;
use Codeception\Lib\ModuleContainer;

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

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