NyanCat\PHPUnit\ResultPrinter::addIncompleteTest PHP Method

addIncompleteTest() public method

public addIncompleteTest ( PHPUnit_Framework_Test $test, Exception $e, $time )
$test PHPUnit_Framework_Test
$e Exception
    public function addIncompleteTest(\PHPUnit_Framework_Test $test, \Exception $e, $time)
    {
        if ($this->debug) {
            return parent::addIncompleteTest($test, $e, $time);
        }
        $this->writeProgress('pending');
        $this->lastTestFailed = TRUE;
    }