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


PHP HtmlReporter::__construct方法代码示例

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


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

示例1:

 /**
  * Constructor.
  *
  * @param bool $showpasses Whether this reporter should output anything for passes.
  */
 function __construct($showpasses)
 {
     parent::__construct('UTF-8');
     $this->showpasses = $showpasses;
     $this->strrunonlyfolder = $this->get_string('runonlyfolder');
     $this->strrunonlyfile = $this->get_string('runonlyfile');
     $this->strseparator = get_separator();
 }
开发者ID:saurabh947,项目名称:MoodleLearning,代码行数:13,代码来源:ex_reporter.php

示例2:

 function __construct($coverage)
 {
     parent::__construct();
     $this->coverage = $coverage;
 }
开发者ID:nterray,项目名称:tuleap,代码行数:5,代码来源:TestsPluginReporter.class.php

示例3:

 function __construct($charset = NULL)
 {
     if (is_null($charset)) {
         global $io_charset;
         $charset = $io_charset;
     }
     parent::__construct($charset);
 }
开发者ID:Ariflaw,项目名称:b2evolution,代码行数:8,代码来源:EvoUnitTestCase.class.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->HtmlReporter();
 }
开发者ID:ryanunderwood,项目名称:phpVMS,代码行数:5,代码来源:run_tests.php

示例5:

 /**
  * Constructor sets character set.
  *
  * @access public
  * @param  string $character_set
  * @return void
  */
 function __construct($character_set = 'UTF-8')
 {
     parent::__construct();
     $this->character_set = $character_set;
 }
开发者ID:nexcra,项目名称:cb5,代码行数:12,代码来源:AbstractTest.php

示例6: __construct

 public function __construct($character_set = 'ISO-8859-1')
 {
     parent::__construct($character_set);
 }
开发者ID:a-ludi,项目名称:community-service-manager,代码行数:4,代码来源:class-csm-html-reporter.php


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