本文整理匯總了PHP中TestRunner::teardownEnv方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestRunner::teardownEnv方法的具體用法?PHP TestRunner::teardownEnv怎麽用?PHP TestRunner::teardownEnv使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TestRunner
的用法示例。
在下文中一共展示了TestRunner::teardownEnv方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: runFile
/** A method to run a single test file.
*
* @param string $layer The name of a layer group to run.
* @param string $folder The folder group to run, not including "tests/unit"
* @param string $file The file to run, including ".test.php"
*/
function runFile($layer, $folder, $file)
{
$type = $GLOBALS['_MAX']['TEST']['test_type'];
// Set up the environment for the test
TestRunner::setupEnv($layer);
$configBefore = TestEnv::parseConfigFile();
// Add the test file to a SimpleTest group
$testName = $this->_testName($layer, $folder, $file);
$secondaryName = $this->_secondaryTestName($layer);
$test = new GroupTest($testName, $secondaryName);
$testFile = MAX_PROJECT_PATH . '/' . $folder . '/' . constant($type . '_TEST_STORE') . '/' . $file;
$test->addTestFile($testFile);
$this->runCase($test);
// Tear down the environment for the test
$configAfter = TestEnv::parseConfigFile();
$configDiff = array_diff_assoc_recursive($configBefore, $configAfter);
if (!empty($configDiff)) {
OA::debug("Config file was changed by test: {$folder} {$file}", PEAR_LOG_DEBUG);
}
TestRunner::teardownEnv($layer);
}