- \PHPUnit_Util_Printer
- \PHPUnit_Util_Log_TAP
class (none) \ PHPUnit_Util_Log_TAP
- All implemented interfaces:
- PHPUnit_Framework_TestListener
A TestListener that generates a logfile of the test execution using the Test Anything Protocol (TAP).
Method Summary
| Name | Description |
|---|---|
| __construct($out = null) | Constructor. |
| addError(PHPUnit_Framework_Test $test, Exception $e, $time) | An error occurred. |
| addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) | A failure occurred. |
| addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) | Incomplete test. |
| addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) | Risky test. |
| addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) | Skipped test. |
| endTest(PHPUnit_Framework_Test $test, $time) | A test ended. |
| endTestSuite(PHPUnit_Framework_TestSuite $suite) | A testsuite ended. |
| startTest(PHPUnit_Framework_Test $test) | A test started. |
| startTestSuite(PHPUnit_Framework_TestSuite $suite) | A testsuite started. |
| writeNotOk(PHPUnit_Framework_Test $test, $prefix = "", $directive = "") |
Inherited Method Summary
| Name | Description |
|---|---|
| flush() | Flush buffer, optionally tidy up HTML, and close output if it's not to a php stream (from PHPUnit_Util_Printer) |
| getAutoFlush() | Check auto-flush mode. (from PHPUnit_Util_Printer) |
| incrementalFlush() | Performs a safe, incremental flush. (from PHPUnit_Util_Printer) |
| setAutoFlush($autoFlush) | Set auto-flushing mode. (from PHPUnit_Util_Printer) |
| write($buffer) | (from PHPUnit_Util_Printer) |
public function __construct($out = null)
Constructor.
- Overrides:
- __construct($out = null)
- Parameters:
mixed- $out- Defaults:
out=null- Throws:
- PHPUnit_Framework_Exception
public function addError(PHPUnit_Framework_Test $test, Exception $e, $time)
An error occurred.
- Parameters:
PHPUnit_Framework_Test- $testException- $efloat- $time
public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time)
A failure occurred.
- Parameters:
PHPUnit_Framework_Test- $testPHPUnit_Framework_AssertionFailedError- $efloat- $time
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time)
Incomplete test.
- Parameters:
PHPUnit_Framework_Test- $testException- $efloat- $time
public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time)
Risky test.
- Parameters:
PHPUnit_Framework_Test- $testException- $efloat- $time
public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time)
Skipped test.
- Parameters:
PHPUnit_Framework_Test- $testException- $efloat- $time
public function endTest(PHPUnit_Framework_Test $test, $time)
A test ended.
- Parameters:
PHPUnit_Framework_Test- $testfloat- $time
public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
A testsuite ended.
- Parameters:
PHPUnit_Framework_TestSuite- $suite
public function startTest(PHPUnit_Framework_Test $test)
A test started.
- Parameters:
PHPUnit_Framework_Test- $test
public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
A testsuite started.
- Parameters:
PHPUnit_Framework_TestSuite- $suite
protected function writeNotOk(PHPUnit_Framework_Test $test, $prefix = "", $directive = "")
- Parameters:
PHPUnit_Framework_Test- $teststring- $directive- Defaults:
prefix=""directive=""