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

com.aventstack.extentreports.view.commons.commons-dashboard.ftl Maven / Gradle / Ivy

${parentHeading}
${report.reportStatusStats.parentCount}
Out of which ${report.reportStatusStats.parentCountPass} passed ${report.reportStatusStats.parentPercentagePass?string("#.00")}%
${childHeading}
${report.reportStatusStats.childCount}
Out of which ${report.reportStatusStats.childCountPass} passed ${report.reportStatusStats.childPercentagePass?string("#.00")}%
Start
${report.startTime?datetime?string["${timeStampFormat}"]}
Time Taken
${report.longRunDuration}

${parentHeading}

<#if report.reportStatusStats.parentCountPass!=0>
 Pass ${report.reportStatusStats.parentPercentagePass?string("#.00")}%
<#if report.reportStatusStats.parentCountFail!=0>
 Fail ${report.reportStatusStats.parentPercentageFail?string("#.00")}%
<#if report.reportStatusStats.parentCountSkip!=0>
 Skip ${report.reportStatusStats.parentPercentageSkip?string("#.00")}%
<#if report.reportStatusStats.childCount!=0>

${childHeading}

<#if report.reportStatusStats.parentCountPass!=0>
 Pass ${report.reportStatusStats.childPercentagePass?string("#.00")}%
<#if report.reportStatusStats.parentCountFail!=0>
 Fail ${report.reportStatusStats.childPercentageFail?string("#.00")}%
<#if report.reportStatusStats.parentCountSkip!=0>
 Skip ${report.reportStatusStats.childPercentageSkip?string("#.00")}%
<#if report.reportStatusStats.grandChildCount!=0>

${grandChildHeading}

<#if report.reportStatusStats.parentCountPass!=0>
${report.reportStatusStats.childPercentagePass}%
Passed
<#if report.reportStatusStats.parentCountFail!=0>
${report.reportStatusStats.childPercentageFail}%
Failed
<#if report.reportStatusStats.parentCountSkip!=0>
${report.reportStatusStats.childPercentageSkip}%
Skipped
<#if config.getConfig("enableTimeline")=='true'>

Timeline

<#if systemAttributeContext?size != 0>

System

<#list systemAttributeContext as sa> <#if sa?? && sa.name?? && sa.value??>
Name Value
${ sa.name } ${ sa.value }
<#if categoryContext?? && categoryContext?size != 0>

Tags

<#list categoryContext as category>
Passed Failed Others
${category.name} ${category.passed} ${category.failed} ${category.others}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy