當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。