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

freemarker.components.key-statistics-two-col.ftl Maven / Gradle / Ivy

<#macro key_statistics_two_columns(testOutcomes)>
    <#assign manualTotalCount = testOutcomes.count("MANUAL").total >
    <#assign manualSuccessCount = testOutcomes.count("MANUAL").withResult("success") >
    <#assign manualPendingCount = testOutcomes.count("MANUAL").withResult("pending") >
    <#assign manualIgnoredCount = testOutcomes.count("MANUAL").withResult("ignored") >
    <#assign manualFailureOrErrorCount = testOutcomes.count("MANUAL").withFailureOrError() >
    

Key Statistics

Number of Scenarios ${testOutcomes.scenarioCount} Total Duration ${totalClockDuration}
Total Number of Test Cases ${testOutcomes.testCaseCount} Fastest Test ${minTestDuration}
Number of Manual Test Cases ${manualTotalCount} Slowest Test ${maxTestDuration}
Tests Started ${startTimestamp} Average Execution Time ${averageTestDuration}
Tests Finished ${endTimestamp} Total Execution Time ${totalTestDuration}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy