Source for file Renderer.php
Documentation is available at Renderer.php
// +------------------------------------------------------------------------+
// +------------------------------------------------------------------------+
// | Copyright (c) 2002-2005 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.12.2.1 2004/12/22 08:06:07 sebastian Exp $
* Abstract base class for Code Coverage renderers.
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright Copyright © 2002-2005 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.php.net/license/3_0.txt The PHP License, Version 3.0
// {{{ Instance Variables
// {{{ protected function __construct($codeCoverageInformation)
* @param array $codeCoverageInformation
protected function __construct($codeCoverageInformation) {
// {{{ public function factory($rendererName, $codeCoverageInformation)
* @param string $rendererName
* @param array $codeCoverageInformation
public function factory($rendererName, $codeCoverageInformation) {
$class = 'PHPUnit2_Extensions_CodeCoverage_Renderer_' . $rendererName;
@require_once 'PHPUnit2/Extensions/CodeCoverage/Renderer/' . $rendererName . '.php';
return new $class($codeCoverageInformation);
'Could not load class %s.',
// {{{ public final function render()
* Visualizes the result array of
* PHPUnit2_Framework_TestResult::getCodeCoverageInformation().
public final function render() {
foreach ($this->getSummary() as $sourceFile => $executedLines) {
return $buffer . $this->footer();
// {{{ public function renderToFile($filename)
* Visualizes the result array of
* PHPUnit2_Framework_TestResult::getCodeCoverageInformation()
* and writes it to a file.
* @param string $filename
if ($fp = fopen($filename, 'w')) {
// {{{ protected function getSummary()
* Returns summarized Code Coverage data.
* Format of the result array:
* "/tested/code.php" => array(
* flag > 1: line was executed.
* flag < 1: line is executable but was not executed.
foreach ($sourceFiles as $sourceFile => $executedLines) {
foreach ($executedLines as $lineNumber => $flag) {
if (!isset ($summary[$sourceFile][$lineNumber])) {
$summary[$sourceFile][$lineNumber] = $flag;
$summary[$sourceFile][$lineNumber] = $flag;
// {{{ protected function header()
// {{{ protected function footer()
// {{{ 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 14:19:18 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|