本文整理汇总了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