|
| | write (string $text) |
| |
| | getBuffer () |
| |
| | printResult (TestResult $result) |
| |
| | __construct ($out=null, bool $verbose=false, string $colors=self::COLOR_DEFAULT, bool $debug=false, $numberOfColumns=80, bool $reverse=false) |
| |
| | setOriginalExecutionOrder (array $order) |
| |
| | setShowProgressAnimation (bool $showProgress) |
| |
| | endTest (Test $test, float $time) |
| |
| | addError (Test $test, \Throwable $t, float $time) |
| |
| | addWarning (Test $test, Warning $e, float $time) |
| |
| | addFailure (Test $test, AssertionFailedError $e, float $time) |
| |
| | addIncompleteTest (Test $test, \Throwable $t, float $time) |
| |
| | addRiskyTest (Test $test, \Throwable $t, float $time) |
| |
| | addSkippedTest (Test $test, \Throwable $t, float $time) |
| |
| | writeProgress (string $progress) |
| |
| | flush () |
| |
| | startTestSuite (TestSuite $suite) |
| |
| | endTestSuite (TestSuite $suite) |
| |
| | startTest (Test $test) |
| |
| | __construct ($out=null) |
| |
| | incrementalFlush () |
| |
| | getAutoFlush () |
| |
| | setAutoFlush (bool $autoFlush) |
| |
| | addWarning (Test $test, Warning $e, float $time) |
| |
|
| const | EVENT_TEST_START = 0 |
| |
| const | EVENT_TEST_END = 1 |
| |
| const | EVENT_TESTSUITE_START = 2 |
| |
| const | EVENT_TESTSUITE_END = 3 |
| |
| const | COLOR_NEVER = 'never' |
| |
| const | COLOR_AUTO = 'auto' |
| |
| const | COLOR_ALWAYS = 'always' |
| |
| const | COLOR_DEFAULT = self::COLOR_NEVER |
| |
| | printHeader (TestResult $result) |
| |
| | formatClassName (Test $test) |
| |
| | registerTestResult (Test $test, ?\Throwable $t, int $status, float $time, bool $verbose) |
| |
| | formatTestName (Test $test) |
| |
| | writeTestResult (array $prevResult, array $result) |
| |
| | formatThrowable (\Throwable $t, ?int $status=null) |
| |
| | colorizeMessageAndDiff (string $style, string $buffer) |
| |
| | formatStacktrace (\Throwable $t) |
| |
| | formatTestResultMessage (\Throwable $t, array $result, ?string $prefix=null) |
| |
| | drawSpinner () |
| |
| | undrawSpinner () |
| |
| | testHasPassed () |
| |
| | flushOutputBuffer (bool $forceFlush=false) |
| |
| | showSpinner () |
| |
| | hideSpinner () |
| |
| | getEmptyTestResult () |
| |
| | getTestResultByName (?string $testName) |
| |
| | formatTestResultMessage (\Throwable $t, array $result, string $prefix='│') |
| |
| | prefixLines (string $prefix, string $message) |
| |
| | printDefects (array $defects, string $type) |
| |
| | printDefect (TestFailure $defect, int $count) |
| |
| | printDefectHeader (TestFailure $defect, int $count) |
| |
| | printDefectTrace (TestFailure $defect) |
| |
| | printErrors (TestResult $result) |
| |
| | printFailures (TestResult $result) |
| |
| | printWarnings (TestResult $result) |
| |
| | printIncompletes (TestResult $result) |
| |
| | printRisky (TestResult $result) |
| |
| | printSkipped (TestResult $result) |
| |
| | printFooter (TestResult $result) |
| |
| | writeNewLine () |
| |
| | colorizeTextBox (string $color, string $buffer) |
| |
| | writeWithColor (string $color, string $buffer, bool $lf=true) |
| |
| | writeProgressWithColor (string $color, string $buffer) |
| |
| | $prettifier |
| |
| | $testIndex = 0 |
| |
| | $testFlushIndex = 0 |
| |
| | $testResults = [] |
| |
| | $testNameResultIndex = [] |
| |
| | $enableOutputBuffer = false |
| |
| | $originalExecutionOrder = [] |
| |
| | $spinState = 0 |
| |
| | $showProgress = true |
| |
| | $column = 0 |
| |
| | $maxColumn |
| |
| | $lastTestFailed = false |
| |
| | $numAssertions = 0 |
| |
| | $numTests = -1 |
| |
| | $numTestsRun = 0 |
| |
| | $numTestsWidth |
| |
| | $colors = false |
| |
| | $debug = false |
| |
| | $verbose = false |
| |
| | $autoFlush = false |
| |
| | $out |
| |
| | $outTarget |
| |