本文整理汇总了PHP中HtmlReporter::paintFooter方法的典型用法代码示例。如果您正苦于以下问题:PHP HtmlReporter::paintFooter方法的具体用法?PHP HtmlReporter::paintFooter怎么用?PHP HtmlReporter::paintFooter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HtmlReporter
的用法示例。
在下文中一共展示了HtmlReporter::paintFooter方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: paintFooter
function paintFooter($test_name)
{
$duration = microtime(true) - $this->_timer;
$micro = round($duration - floor($duration), 2);
$seconds = floor($duration);
$minutes = floor($seconds / 60);
$seconds = $seconds % 60;
$d = $minutes ? $minutes . ' minute' . ($minutes > 1 ? 's ' : ' ') : '';
$d .= $seconds + $micro . ' seconds';
echo '<div style="border:1px solid orange; background: lightyellow; color:orange">Time taken: ' . $d . '</div>';
parent::paintFooter($test_name);
}
示例2: paintFooter
function paintFooter($test_name)
{
if ($this->getFailCount() + $this->getExceptionCount() == 0) {
$text = $this->getPassCount() . " tests ok";
print "<div style=\"background-color:#F5FFA8; text-align:center; right:10px; top:30px; border:2px solid green; z-index:10; position:absolute;\">{$text}</div>";
} else {
parent::paintFooter($test_name);
print "</div>";
}
}
示例3: paintFooter
function paintFooter($test_name)
{
echo '<div class="progress percents" style="z-index:12">Done.</div>';
ob_end_flush();
parent::paintFooter($test_name);
}