// Result matrix (resultsTC.php)
// Shows an extra column with the result of the latest execution on
// the lastest CREATED build
$tlCfg->resultMatrixReport->buildColumns['showExecutionResultLatestCreatedBuild'] = true;
// Result matrix (resultsTC.php)
// Shows an extra column with the note of latest execution on
// the lastest CREATED build
$tlCfg->resultMatrixReport->buildColumns['showExecutionNoteLatestCreatedBuild'] = true;
// Show build columns in revers order. The latest build is to the left
$tlCfg->resultMatrixReport->buildColumns['latestBuildOnLeft'] = false;
-
P粉360985133
-
2023-08-23
20浏览
根据您提供的代码片段,我理解您想要在PHP中实现以下功能:
- 在结果矩阵报告中显示一个额外的列,其中包含最新执行在最新CREATED构建上的结果。
- 在结果矩阵报告中显示一个额外的列,其中包含最新执行在最新CREATED构建上的注释。
- 显示构建列的顺序反转。最新的构建将显示在左侧。
以下是代码片段中定义的变量和功能的解释:
$tlCfg->resultMatrixReport->buildColumns['showExecutionResultLatestCreatedBuild'] = true;
这段代码将showExecutionResultLatestCreatedBuild设置为true,这意味着将在结果矩阵报告中显示一个包含最新执行在最新CREATED构建上的结果的列。$tlCfg->resultMatrixReport->buildColumns['showExecutionNoteLatestCreatedBuild'] = true;
这段代码将showExecutionNoteLatestCreatedBuild设置为true,这意味着将在结果矩阵报告中显示一个包含最新执行在最新CREATED构建上的注释的列。$tlCfg->resultMatrixReport->buildColumns['latestBuildOnLeft'] = false;
这段代码将latestBuildOnLeft设置为false,这意味着构建列的顺序将反转。最新的构建将显示在左侧。
请注意,上述代码片段中的变量和功能是针对特定的代码片段和上下文而言的,您可能需要根据您的实际需求进行相应的调整和修改。
php中文网 免责声明:以上内容除特别注明外均来源于网友提问,php中文网回答,权益归原著者所有;