本文整理汇总了PHP中TestCase::getDependencies方法的典型用法代码示例。如果您正苦于以下问题:PHP TestCase::getDependencies方法的具体用法?PHP TestCase::getDependencies怎么用?PHP TestCase::getDependencies使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestCase
的用法示例。
在下文中一共展示了TestCase::getDependencies方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: populateTestSuite
/**
* Populate the collection of test case objects of a given test Suite
* from an array that contains test cases path
*
* @param TestSuite $testSuite Target test suite to populate
* @param Array $testCaseArray List of testcases to attach to the testsuite
* @param Boolean $isDependency Is the testcases added by the user or added as dependency
*
* @return Array
*/
function populateTestSuite($testSuite, $testCasesArray, $isDependency = false)
{
foreach ($testCasesArray as $test) {
try {
$testCase = new TestCase(substr($test, 0, -3));
if ($testCase->checkTags()) {
$missingParams = $testCase->checkSetupParams();
if (!empty($missingParams)) {
$this->error[] = 'Testcase "' . $test . '" requeires missing conf param(s): ' . join(', ', $missingParams);
}
$dependencies = $testCase->getDependencies();
try {
$this->attachDependencies($testSuite, $dependencies, $test);
} catch (OutOfRangeException $exception) {
$this->error[] = $exception->getMessage();
}
$testSuite->attach($testCase, $isDependency);
$this->storeTestCase($testCase, $testSuite);
} else {
$this->error[] = 'Testcase "' . $test . '" were removed due to an incompatible tag';
}
} catch (RuntimeException $e) {
$this->logger->LogWarning($e->getMessage());
$this->error[] = $e->getMessage();
}
}
return array("info" => $this->info, "error" => $this->error);
}
示例2: rspecPrettyFormat
/**
* Display test case as HTML output
*
* @param String $name The test case name
*
* @return String
*/
function rspecPrettyFormat($testCaseName)
{
$testCaseObj = new TestCase($testCaseName);
$rspecStructure = $testCaseObj->retrieveRspecStructure();
$rspecOutput = '<br><pre>ClassName : ' . $testCaseObj->name . '.rb';
$rspecOutput .= '<br><br><b>' . count($rspecStructure) . ' Rspec examples:</b> <br><br>';
foreach ($rspecStructure as $testString) {
$rspecOutput .= '<span style="padding: 25px;">' . $testString . '</span><br>';
}
$rspecOutput .= '<br>';
$dependencies = $testCaseObj->getDependencies();
if (!empty($dependencies)) {
$rspecOutput .= '<b>' . count($dependencies) . ' test(s) in the dependency list</b>:<br><br>';
foreach ($dependencies as $deps) {
$rspecOutput .= '<span style="padding: 25px;">' . $deps . '</span><br>';
}
}
$rspecOutput .= '<br></pre>';
return $rspecOutput;
}