Source for file Renderer.php
Documentation is available at Renderer.php
// +------------------------------------------------------------------------+
// +------------------------------------------------------------------------+
// | Copyright (c) 2002-2004 Sebastian Bergmann <sb@sebastian-bergmann.de>. |
// +------------------------------------------------------------------------+
// | This source file is subject to version 3.00 of the PHP License, |
// | that is available at http://www.php.net/license/3_0.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +------------------------------------------------------------------------+
// $Id: Renderer.php,v 1.1.2.2 2004/10/01 06:11:52 sebastian Exp $
* Abstract base class for Code Coverage renderers.
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright Copyright © 2002-2004 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.php.net/license/3_0.txt The PHP License, Version 3.0
// {{{ protected function __construct($codeCoverageInformation)
* @param array $codeCoverageInformation
protected function __construct($codeCoverageInformation) {
// {{{ public function factory($type, $codeCoverageInformation)
* @param array $codeCoverageInformation
public function factory($type, $codeCoverageInformation) {
$class = 'PHPUnit2_Extensions_CodeCoverage_Renderer_' . $type;
if (@require_once('PHPUnit2/Extensions/CodeCoverage/Renderer/' . $type . '.php')) {
$object = new $class($codeCoverageInformation);
'Could not load class %s.',
// {{{ public function render()
* Visualizes the result array of
* PHPUnit2_Framework_TestResult::getCodeCoverageInformation().
public final function render() {
foreach ($sourceFiles as $sourceFile => $executedLines) {
return $buffer . $this->footer();
// {{{ protected function header()
// {{{ protected function footer()
// {{{ protected function startTestCase($testCaseName)
* @param string $testCaseName
// {{{ protected function endTestCase($testCaseName)
* @param string $testCaseName
// {{{ protected function startSourceFile($sourceFile)
* @param string $sourceFile
// {{{ protected function endSourceFile($sourceFile)
* @param string $sourceFile
// {{{ abstract protected function renderSourceFile($codeLines, $executedLines)
* @param array $codeLines
* @param array $executedLines
* vim600: et sw=2 ts=2 fdm=marker
Documentation generated on Mon, 11 Mar 2019 13:58:19 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|