本文整理匯總了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);
}