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


PHP lime_test::__construct方法代码示例

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


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

示例1: __construct

 public function __construct()
 {
     $this->sfPropelData = new sfPropelData();
     $this->testDataDir = SF_ROOT_DIR . '/test/fixtures';
     if (!is_readable($this->testDataDir)) {
         throw new RuntimeException('Could not read directory ' . $this->testDataDir);
     }
     parent::__construct();
 }
开发者ID:TheProjecter,项目名称:myisern-lime,代码行数:9,代码来源:sfPropelTest.php

示例2: __construct

 public function __construct($fixturesFileOrDir = null, $plan = null)
 {
     if ($fixturesFileOrDir === null) {
         $this->testDataDir = SF_ROOT_DIR . '/test/fixtures';
     } else {
         if (file_exists($fixturesFileOrDir)) {
             $this->testDataDir = $fixturesFileOrDir;
         } else {
             throw new RuntimeException($fixturesFileOrDir . ': No such file or directory');
         }
     }
     if (!is_readable($this->testDataDir)) {
         throw new RuntimeException($this->testDataDir . ': Could not read file or directory');
     }
     parent::__construct($plan);
 }
开发者ID:TheProjecter,项目名称:myisern-lime,代码行数:16,代码来源:sfModelTest.php

示例3: __construct

 public function __construct(PHPUnit_Framework_TestCase $testCase)
 {
     $this->testCase = $testCase;
     parent::__construct(null, null);
 }
开发者ID:nvidela,项目名称:kimkelen,代码行数:5,代码来源:sfPHPUnitTest.class.php

示例4: __construct

 /**
  * @param int $plan
  * @param lime_output $outputInstance
  * @return null
  */
 public function __construct($plan = null, $outputInstance = null)
 {
     parent::__construct($plan, is_null($outputInstance) ? new lime_output_color() : $outputInstance);
 }
开发者ID:jakzal,项目名称:gyImagenePlugin,代码行数:9,代码来源:gyLimeTest.class.php

示例5:

 function __construct($comments = false)
 {
     parent::__construct();
     $this->_comments = $comments;
 }
开发者ID:bshaffer,项目名称:Symplist,代码行数:5,代码来源:SeoLimeTest.class.php


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