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

com.aventstack.extentreports.view.v3html.author-view.v3-html-author-view.ftl Maven / Gradle / Ivy

<#if authorContext?? && authorContext?size != 0>
    <#list authorContext as author>
  • ${ author.name } <#if author.passed != 0> ${ author.passed } <#if author.failed != 0> ${ author.failed } <#if author.others != 0> ${ author.others }
    <#if author.passed != 0>Passed: ${ author.passed } <#if author.failed != 0>Failed: ${ author.failed } <#if author.others != 0>Others: ${ author.others }
    <#list author.tests as test>
    Timestamp TestName Status
    ${ test.startTime?datetime?string["${timeStampFormat}"] } ${ test.name } ${ test.status }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy