本文整理汇总了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();
}
示例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);
}
示例3: __construct
public function __construct(PHPUnit_Framework_TestCase $testCase)
{
$this->testCase = $testCase;
parent::__construct(null, null);
}
示例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);
}
示例5:
function __construct($comments = false)
{
parent::__construct();
$this->_comments = $comments;
}