當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TestRunner::init方法代碼示例

本文整理匯總了PHP中TestRunner::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestRunner::init方法的具體用法?PHP TestRunner::init怎麽用?PHP TestRunner::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TestRunner的用法示例。


在下文中一共展示了TestRunner::init方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 function init()
 {
     parent::init();
     if (!self::$default_reporter) {
         self::set_reporter(Director::is_cli() ? 'CliDebugView' : 'DebugView');
     }
 }
開發者ID:silverstripe-australia,項目名稱:ssautesting,代碼行數:7,代碼來源:ParameterisedTestRunner.php

示例2: init

 function init()
 {
     parent::init();
     ManifestBuilder::load_test_manifest();
     if (!self::$default_reporter) {
         self::set_reporter(Director::is_cli() ? 'CliDebugView' : 'DebugView');
     }
 }
開發者ID:rodneyway,項目名稱:front-end-workflow-testing,代碼行數:8,代碼來源:ParameterisedTestRunner.php

示例3: TestRunner

<?php

require_once 'TestRunner.php';
$runner = new TestRunner('all');
$runner->init();
$runner->requireDatabase();
$testDirs = array('/tests/core', '/plugins');
if ($runner->isBrowserPresent()) {
    $testDirs[] = '/tests/integration';
} else {
    $runner->appendIntro("<p>" . $runner->getNoBrowserErrorMessage() . "<br/>Skipping integration tests...</p>");
}
$runner->setTestDirectories($testDirs);
$runner->run();
/*
assertTrue($x)					Fail if $x is false
assertFalse($x)					Fail if $x is true
assertNull($x)					Fail if $x is set
assertNotNull($x)				Fail if $x not set
assertIsA($x, $t)				Fail if $x is not the class or type $t
assertNotA($x, $t)				Fail if $x is of the class or type $t
assertEqual($x, $y)				Fail if $x == $y is false
assertNotEqual($x, $y)			Fail if $x == $y is true
assertWithinMargin($x, $y, $m)	Fail if abs($x - $y) < $m is false
assertOutsideMargin($x, $y, $m)	Fail if abs($x - $y) < $m is true
assertIdentical($x, $y)			Fail if $x == $y is false or a type mismatch
assertNotIdentical($x, $y)		Fail if $x == $y is true and types match
assertReference($x, $y)			Fail unless $x and $y are the same variable
assertClone($x, $y)				Fail unless $x and $y are identical copies
assertPattern($p, $x)			Fail unless the regex $p matches $x
assertNoPattern($p, $x)			Fail if the regex $p matches $x
開發者ID:nnnnathann,項目名稱:piwik,代碼行數:31,代碼來源:all_tests.php


注:本文中的TestRunner::init方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。