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


PHP SimpleReporter::__construct方法代码示例

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


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

示例1: DOMDocument

 function __construct()
 {
     parent::__construct();
     $this->doc = new DOMDocument();
     $this->doc->loadXML('<testsuite/>');
     $this->root = $this->doc->documentElement;
 }
开发者ID:bermi,项目名称:akelos,代码行数:7,代码来源:junit_xml_reporter.php

示例2: __construct

 /**
  *  Ethna_UnitTestReporterのコンストラクタ
  *
  *  @access public
  *  @param  string  $character_set  キャラクタセット
  */
 public function __construct($character_set = 'UTF-8')
 {
     parent::__construct();
     $this->_character_set = $character_set;
     $this->report = array();
     $this->result = array();
 }
开发者ID:hiroki-ta,项目名称:my.project,代码行数:13,代码来源:UnitTestReporter.php

示例3: __construct

 public function __construct($test_case_pattern = '/^TestOf(.*)$/')
 {
     parent::__construct();
     $this->_test_case_pattern = empty($test_case_pattern) ? '/^(.*)$/' : $test_case_pattern;
 }
开发者ID:ilune,项目名称:simpletest,代码行数:5,代码来源:testdox.php

示例4: __construct

 /**
  * Does nothing yet. The first output will be sent on the first test start.
  */
 public function __construct()
 {
     parent::__construct();
 }
开发者ID:guicara,项目名称:simpletest,代码行数:7,代码来源:reporter.php

示例5: TestDoxReporter

 function TestDoxReporter($test_case_pattern = '/^TestOf(.*)$/')
 {
     parent::__construct();
     $this->_test_case_pattern = empty($test_case_pattern) ? '/^(.*)$/' : $test_case_pattern;
 }
开发者ID:googlecode-mirror,项目名称:bulldoc,代码行数:5,代码来源:testdox.php

示例6:

 /**
  *    Sets up indentation and namespace.
  *    @param string $namespace        Namespace to add to each tag.
  *    @param string $indent           Indenting to add on each nesting.
  *    @access public
  */
 function __construct($namespace = false, $indent = '  ')
 {
     parent::__construct();
     $this->namespace = $namespace ? $namespace . ':' : '';
     $this->indent = $indent;
 }
开发者ID:ngugijames,项目名称:ThinkUp,代码行数:12,代码来源:xml.php

示例7: array

 function __construct()
 {
     parent::__construct();
     $this->results = array();
 }
开发者ID:sebs,项目名称:simpletest,代码行数:5,代码来源:recorder.php

示例8: __construct

 public function __construct($microTimeStart)
 {
     parent::__construct();
     $this->_microTimeStart = $microTimeStart;
 }
开发者ID:PublicityPort,项目名称:OpenCATS,代码行数:5,代码来源:CATSTestReporter.php

示例9:

 /**
  *    Does nothing yet. The first output will
  *    be sent on the first test start. For use
  *    by a web browser.
  *    @access public
  */
 function __construct($path = '../ui/')
 {
     parent::__construct();
     $this->path = $path;
 }
开发者ID:GerHobbelt,项目名称:simpletest,代码行数:11,代码来源:webunit_reporter.php

示例10: __construct

 public function __construct($character_set = 'utf-8')
 {
     parent::__construct();
     $this->_character_set = $character_set;
 }
开发者ID:ivantcholakov,项目名称:Bonfire,代码行数:5,代码来源:my_reporter.php

示例11: __construct

 public function __construct()
 {
     parent::__construct();
     $this->doc = new DOMDocument();
     $this->doc->loadXML('<testsuite/>');
     $this->root = $this->doc->documentElement;
     $base_path = defined('MAKELOS_BASE_DIR') ? MAKELOS_BASE_DIR : AK_BASE_DIR;
     $file_path = AkConfig::getOption('report_path', $base_path . DS . 'reports' . DS . 'units.xml');
     AkFileSystem::file_put_contents($file_path, "<?xml version=\"1.0\"?>\n", array('base_path' => $base_path));
     $this->_fp = @fopen($file_path, 'a');
 }
开发者ID:bermi,项目名称:akelos,代码行数:11,代码来源:base.php

示例12: __construct

 /**
  * Creates a new KortCliReporter instance.
  */
 public function __construct()
 {
     parent::__construct();
     date_default_timezone_set('UTC');
 }
开发者ID:CloCkWeRX,项目名称:kort,代码行数:8,代码来源:KortCliReporter.php

示例13: TreemapStack

 function __construct()
 {
     parent::__construct();
     $this->stack = new TreemapStack();
     $this->graph = null;
 }
开发者ID:GerHobbelt,项目名称:simpletest,代码行数:6,代码来源:treemap_recorder.php


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