* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Prints TestDox documentation in HTML format. * * @since Class available since Release 2.1.0 */ class PHPUnit_Util_TestDox_ResultPrinter_HTML extends PHPUnit_Util_TestDox_ResultPrinter { /** * @var bool */ protected $printsHTML = true; /** * Handler for 'start run' event. */ protected function startRun() { $this->write(''); } /** * Handler for 'start class' event. * * @param string $name */ protected function startClass($name) { $this->write( '

' . $this->currentTestClassPrettified . '

'); } /** * Handler for 'end run' event. */ protected function endRun() { $this->write(''); } }