本文整理匯總了PHP中testplan::getAllExecutionsWithBugs方法的典型用法代碼示例。如果您正苦於以下問題:PHP testplan::getAllExecutionsWithBugs方法的具體用法?PHP testplan::getAllExecutionsWithBugs怎麽用?PHP testplan::getAllExecutionsWithBugs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類testplan
的用法示例。
在下文中一共展示了testplan::getAllExecutionsWithBugs方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
$img = $smarty->getImages();
$openBugs = array();
$resolvedBugs = array();
$arrData = array();
$tplan_mgr = new testplan($db);
$metricsMgr = new tlTestPlanMetrics($db);
$tproject_mgr = new testproject($db);
$tplan_info = $tplan_mgr->get_by_id($args->tplan_id);
$tproject_info = $tproject_mgr->get_by_id($args->tproject_id);
unset($tproject_mgr);
// $filters = array();
// $options = array('output' => 'array', 'only_executed' => true, 'details' => 'full');
// $execSet = $tplan_mgr->get_linked_tcversions($args->tplan_id, $filters, $options);
switch ($args->verboseType) {
case 'all':
$execSet = $tplan_mgr->getAllExecutionsWithBugs($args->tplan_id);
break;
case 'latest':
default:
$execSet = (array) $metricsMgr->getLTCVNewGeneration($args->tplan_id, null, array('addExecInfo' => true, 'accessKeyType' => 'index', 'specViewFields' => true, 'testSuiteInfo' => true, 'includeNotRun' => false));
break;
}
$testcase_bugs = array();
$mine = array();
$l18n = init_labels(array('execution_history' => null, 'design' => null, 'no_linked_bugs' => null));
foreach ($execSet as $execution) {
$tc_id = $execution['tc_id'];
$mine[] = $execution['exec_id'];
$bug_urls = buildBugString($db, $execution['exec_id'], $its, $openBugs, $resolvedBugs);
if ($bug_urls) {
// First bug found for this tc