Class CakeBaseReporter
CakeBaseReporter contains common reporting features used in the CakePHP Test suite
- PHPUnit_TextUI_ResultPrinter
- CakeBaseReporter
Direct known subclasses
CakeHtmlReporter, CakeTextReporterCopyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Located at Cake/TestSuite/Reporter/CakeBaseReporter.php
Method Detail
__constructsource public
__construct( string $charset 'utf-8' , array $params array() )
Does nothing yet. The first output will be sent on the first test start.
Params
- show_passes - Should passes be shown
- plugin - Plugin test being run?
- core - Core test being run.
- case - The case being run
- codeCoverage - Whether the case/group being run is being code covered.
Parameters
- string
$charset
optional 'utf-8' - The character set to output with. Defaults to UTF-8
- array
$params
optional array() - Array of request parameters the reporter should use. See above.
addErrorsource public
addError( PHPUnit_Framework_Test $test , Exception $e , float $time )
An error occurred.
Parameters
- PHPUnit_Framework_Test
$test
- The test to add an error for.
- Exception
$e
- The exception object to add.
- float
$time
- The current time.
addFailuresource public
addFailure( PHPUnit_Framework_Test $test , PHPUnit_Framework_AssertionFailedError $e , float $time )
A failure occurred.
Parameters
- PHPUnit_Framework_Test
$test
- The test that failed
- PHPUnit_Framework_AssertionFailedError
$e
- The assertion that failed.
- float
$time
- The current time.
addIncompleteTestsource public
addIncompleteTest( PHPUnit_Framework_Test $test , Exception $e , float $time )
Incomplete test.
Parameters
- PHPUnit_Framework_Test
$test
- The test that was incomplete.
- Exception
$e
- The incomplete exception
- float
$time
- The current time.
addSkippedTestsource public
addSkippedTest( PHPUnit_Framework_Test $test , Exception $e , float $time )
Skipped test.
Parameters
- PHPUnit_Framework_Test
$test
- The test that failed.
- Exception
$e
- The skip object.
- float
$time
- The current time.
baseUrlsource public
baseUrl( )
Get the baseUrl if one is available.
Returns
string
The base URL for the request.
endTestsource public
endTest( PHPUnit_Framework_Test $test , float $time )
A test ended.
Parameters
- PHPUnit_Framework_Test
$test
- The test that ended
- float
$time
- The current time.
endTestSuitesource public
endTestSuite( PHPUnit_Framework_TestSuite $suite )
A test suite ended.
Parameters
- PHPUnit_Framework_TestSuite
$suite
- The suite that ended.
paintDocumentEndsource public
paintDocumentEnd( )
Paints the end of the response from the test suite. Used to paint things like </body> in an html page.
paintDocumentStartsource public
paintDocumentStart( )
Paints the start of the response from the test suite. Used to paint things like head elements in an html page.
paintResultsource public
paintResult( PHPUnit_Framework_TestResult $result )
Paint result
Parameters
- PHPUnit_Framework_TestResult
$result
- The result object
paintTestMenusource public
paintTestMenu( )
Paint a list of test sets, core, app, and plugin test sets available.
printResultsource public
printResult( PHPUnit_Framework_TestResult $result )
Print result
Parameters
- PHPUnit_Framework_TestResult
$result
- The result object
startTestsource public
startTest( PHPUnit_Framework_Test $test )
A test started.
Parameters
- PHPUnit_Framework_Test
$test
- The test that started.
startTestSuitesource public
startTestSuite( PHPUnit_Framework_TestSuite $suite )
A test suite started.
Parameters
- PHPUnit_Framework_TestSuite
$suite
- The suite to start
testCaseListsource public
testCaseList( )
Retrieves a list of test cases from the active Manager class, displaying it in the correct format for the reporter subclass
Returns
mixed
mixed
Properties summary
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/2.7/class-CakeBaseReporter.html