本文整理汇总了PHP中PHPUnit_Util_Template::getDate方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Util_Template::getDate方法的具体用法?PHP PHPUnit_Util_Template::getDate怎么用?PHP PHPUnit_Util_Template::getDate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Util_Template
的用法示例。
在下文中一共展示了PHPUnit_Util_Template::getDate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setTemplateVars
/**
* @param PHPUnit_Util_Template $template
* @param string $title
* @access public
*/
protected function setTemplateVars(PHPUnit_Util_Template $template, $title)
{
$template->setVar(array('title', 'link', 'date', 'phpunit_version', 'xdebug_version'), array($title, $this->getLink(TRUE), $template->getDate(), PHPUnit_Runner_Version::id(), phpversion('xdebug')));
}
示例2: setTemplateVars
/**
* @param PHPUnit_Util_Template $template
* @param string $title
* @param string $charset
*/
protected function setTemplateVars(PHPUnit_Util_Template $template, $title, $charset)
{
$template->setVar(array('title' => $title, 'charset' => $charset, 'link' => $this->getLink(TRUE), 'num_executable_lines' => $this->getNumExecutableLines(), 'num_executed_lines' => $this->getNumExecutedLines(), 'lines_executed_percent' => $this->getLineExecutedPercent(), 'date' => $template->getDate(), 'phpunit_version' => PHPUnit_Runner_Version::id(), 'xdebug_version' => phpversion('xdebug'), 'php_version' => PHP_VERSION));
}
示例3: setTemplateVars
/**
* @param PHPUnit_Util_Template $template
* @param string $title
* @access public
*/
protected function setTemplateVars(PHPUnit_Util_Template $template, $title)
{
$template->setVar(array('title', 'link', 'executable_lines', 'executed_lines', 'executed_percent', 'date', 'phpunit_version', 'xdebug_version'), array($title, $this->getLink(FALSE, TRUE), $this->getNumExecutableLines(), $this->getNumExecutedLines(), $this->getExecutedPercent(), $template->getDate(), PHPUnit_Runner_Version::id(), phpversion('xdebug')));
}