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

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

There is a newer version: 4.2.12
Show newest version
<#macro key_statistics(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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy