当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPUnit_TextUI_ResultPrinter::printFooter方法代码示例

本文整理汇总了PHP中PHPUnit_TextUI_ResultPrinter::printFooter方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_TextUI_ResultPrinter::printFooter方法的具体用法?PHP PHPUnit_TextUI_ResultPrinter::printFooter怎么用?PHP PHPUnit_TextUI_ResultPrinter::printFooter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PHPUnit_TextUI_ResultPrinter的用法示例。


在下文中一共展示了PHPUnit_TextUI_ResultPrinter::printFooter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: printFooter

 /**
  * Just add to the output the seed used to randomize the test suite.
  * 
  * @param  PHPUnit_Framework_TestResult $result
  */
 protected function printFooter(\PHPUnit_Framework_TestResult $result)
 {
     parent::printFooter($result);
     $this->writeNewLine();
     $this->write("Randomized with seed: {$this->seed}");
     $this->writeNewLine();
 }
开发者ID:hasumedic,项目名称:phpunit-randomizer,代码行数:12,代码来源:ResultPrinter.php

示例2: printFooter

 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     $this->write('<div class="stats">');
     parent::printFooter($result);
     $this->write('</div>');
     $this->write('<div class="resourceUsage">');
     $this->write(PHP_Timer::resourceUsage());
     $this->write('</div>');
 }
开发者ID:kshyana,项目名称:PHP-TestKit,代码行数:9,代码来源:TestKit_Printer.php

示例3: printFooter

 protected function printFooter(\PHPUnit_Framework_TestResult $result)
 {
     $this->write('<span class="result">');
     parent::printFooter($result);
     $this->write('</span>');
     $this->write('<table class="timer">');
     $this->write('<tr><th class="title" colspan="2">Long running tests</th></tr>');
     $this->write('<tr><th>Test</th><th>Time</th></tr>');
     foreach (Timer::getLongRunningTests(10) as $testName => $timeTaken) {
         $timeTaken = round($timeTaken, 2) . 's';
         $this->write("<tr><td>{$testName}</td><td>{$timeTaken}</td></td>");
     }
     $this->write('</table>');
     $this->incrementalFlush();
 }
开发者ID:timetoogo,项目名称:pinq,代码行数:15,代码来源:TestRunner.php

示例4: printResult

 public function printResult(\PHPUnit_Framework_TestResult $result)
 {
     // Standard output
     parent::printResult($result);
     // Capture footer and send to Growl.
     $this->capture = true;
     parent::printFooter($result);
     $this->capture = false;
     if (strstr($this->color, 'red')) {
         $type = "RED";
     } elseif (strstr($this->color, 'green')) {
         $type = "GREEN";
     } else {
         $type = "YELLOW";
     }
     try {
         $this->sendNotify($this->buffer, $type);
     } catch (\Exception $e) {
         $this->write("[growlprinter] Could not send notification.\n" . $e->getMessage());
     }
 }
开发者ID:iakio,项目名称:phpunit-growlprinter,代码行数:21,代码来源:GrowlPrinter.php


注:本文中的PHPUnit_TextUI_ResultPrinter::printFooter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。