Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The report is composed by several sections. Two major sections are available: Introduction and Test Runs details.

By default, and to avoid overload/redundancy of information, only the "Introduction" section all the details of of the Test Run will be rendered; you can change this behavior on the template (more info ahead).

...

FieldDescriptionSample Code
KeyKey of the Test Run${TestRuns[n].Key}
SummaryThe Summary of the Test Run

${wiki:TestRuns[n].Summary}

Test TypeThe type of Test that was executed in this Test Run

${wiki:TestRuns[n].Summary}

Test TypeThe type of Test that was executed in this Test Run${TestRuns[n].Test Type}
${TestRuns[n].TestType}
#ReqNumber of Requirements associated to this Test Run

${set(count, 0)}

#{for t=TestsCount}

#{if (%{'${Tests[t].Key}'.equals('${TestRuns[n].Key}')})}

#{for j=Tests[t].LinksCount}

#{if (%{'${Tests[t].Links[j].LinkType}'.equals('tests')})}

${set(count,%{${count}+1})}

#{end}

#{end}

#{end}

#{end}

${count

#ReqNumber of Requirements associated to this Test Run

${TestRuns[n].RequirementsCount}

#DefCalculation of the number of Defects associated to this Test Run%{var total=${TestRuns[n].ExecutionDefectsCount} + ${TestRuns[n].TestStepsDefectsCount};  var total2=’’+total;var totalParts= total2.split(‘.’); totalParts[0];}
Test SetsTest Set Key (if this Test Run was part of a Test Set)

${TestRuns[n].TestSets[ts].Key}

AssigneeFull name of the Assignee${fullname:TestRuns[n].AssigneeId}
StatusStatus of the Test Run

${TestRuns[n].Execution Status}

...

Variable/flagPurposedefaultexample(s)

showTestRunDetails

render the details section

  • format: 0 or 1

01

${set(showTestRunDetails, 0)}

showTestRunEvidences

render this section

  • format: 0 or 1

(Make sure to define showTestRunDetails at 1)

0
1

${set(showTestRunEvidences, 0)}

showTestRunAttachments

render this section

  • format: 0 or 1

(Make sure to define showTestRunDetails at 1)

0
1

${set(showTestRunAttachments, 0)}

showTestRunIterations

render this section

  • format: 0 or 1

(Make sure to define showTestRunDetails at 1)

0
1

${set(showTestRunIterations, 0)}

...