PHPUnit_Framework_Assert::markTestIncomplete PHP 메소드

markTestIncomplete() 공개 정적인 메소드

Mark the test as incomplete.
public static markTestIncomplete ( string $message = '' )
$message string
    public static function markTestIncomplete($message = '')
    {
        throw new PHPUnit_Framework_IncompleteTestError($message);
    }
PHPUnit_Framework_Assert