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


PHP testplan::getAllExecutionsWithBugs方法代碼示例

本文整理匯總了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
開發者ID:CristianOspinaOspina,項目名稱:testlinkpruebas,代碼行數:31,代碼來源:resultsBugs.php


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