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

com.aventstack.extentreports.view.html-report.category-view.category-view.ftl Maven / Gradle / Ivy

<#if categoryContext?? && categoryContext?size != 0>
Categories
    <#list categoryContext as category>
  • ${ category.name } <#if category.passed != 0> ${ category.passed } <#if category.failed != 0> ${ category.failed } <#if category.others != 0> ${ category.others }
    <#if category.passed != 0>Passed: ${ category.passed } <#if category.failed != 0>Failed: ${ category.failed } <#if category.others != 0>Others: ${ category.others }
    <#list category.getTestList() as test>
    Timestamp TestName Status
    ${ test.startTime?datetime?string } ${ test.hierarchicalName } ${ test.status }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy