All Downloads are FREE. Search and download functionalities are using the official Maven repository.

freemarker.components.test-outcomes.ftl Maven / Gradle / Ivy

<#macro test_results(testOutcomes, title, id)>

${title}

<#if reportOptions.showStepDetails> <#assign testResultSet = testOutcomes.tests > <#foreach testOutcome in testResultSet> <#assign test_outcome_icon = formatter.resultIcon().forResult(testOutcome.result) /> <#assign exampleCount = "" /> <#if testOutcome.dataDriven> <#assign exampleCount> (${testOutcome.dataTable.size} examples) <#if reportOptions.showStepDetails>
  Tests StepsFail Error Comp Pend Ignore Skip Started Took
(secs)
${test_outcome_icon} <#if (testOutcome.manual)> <#list testOutcome.flags as flag> ${testOutcome.result}
<#assign testOutcomeTitle = testOutcome.unqualified.withContext().title > <#assign testOutcomeTitleTip = testOutcome.unqualified.title > ${formatter.htmlCompatibleTestTitle(testOutcomeTitle)}${exampleCount} <#if (!testOutcome.titleWithIssues)> ${testOutcome.formattedIssues}
${testOutcome.nestedStepCount}${testOutcome.failureCount} ${testOutcome.errorCount} ${testOutcome.compromisedCount} ${testOutcome.pendingCount} ${testOutcome.skippedCount} ${testOutcome.ignoredCount} ${testOutcome.startedAt} ${testOutcome.durationInSeconds}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy