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


PHP SimpleTestOptions::getVersion方法代码示例

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


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

示例1: AllTests

 function AllTests() {
     $this->GroupTest('All tests for SimpleTest ' . SimpleTestOptions::getVersion());
     $this->AddTestCase(new UnitTests());
     $this->addTestFile('shell_test.php');
     $this->addTestFile('live_test.php');
     $this->addTestFile('acceptance_test.php');
     $this->addTestFile('real_sites_test.php');
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:8,代码来源:all_tests.php

示例2: paintFooter

 /**
  * Output anything that should appear below all the test output, e.g. summary information.
  */
 function paintFooter($test_name)
 {
     $summarydata = new stdClass();
     $summarydata->run = $this->getTestCaseProgress();
     $summarydata->total = $this->getTestCaseCount();
     $summarydata->passes = $this->getPassCount();
     $summarydata->fails = $this->getFailCount();
     $summarydata->exceptions = $this->getExceptionCount();
     if ($summarydata->fails == 0 && $summarydata->exceptions == 0) {
         $status = "passed";
     } else {
         $status = "failed";
     }
     echo '<div class="unittestsummary ', $status, '">';
     echo $this->get_string('summary', $summarydata);
     echo '</div>';
     echo '<div class="performanceinfo">', $this->get_string('runat', userdate($this->timestart)), ' ', $this->get_string('timetakes', format_time(time() - $this->timestart)), ' ', $this->get_string('version', SimpleTestOptions::getVersion()), '</div>';
 }
开发者ID:nigeldaley,项目名称:moodle,代码行数:21,代码来源:ex_reporter.php

示例3: setUp

 function setUp()
 {
     $this->addHeader('User-Agent: SimpleTest ' . SimpleTestOptions::getVersion());
 }
开发者ID:sebs,项目名称:simpletest,代码行数:4,代码来源:acceptance_test.php

示例4: AllTests

 function AllTests()
 {
     $this->GroupTest("All tests for SimpleTest " . SimpleTestOptions::getVersion());
     $this->AddTestCase(new UnitTests());
     $this->AddTestCase(new BoundaryTests());
 }
开发者ID:printedheart,项目名称:iwfms,代码行数:6,代码来源:all_tests.php


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