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

templates.default.retrospective.ftlh Maven / Gradle / Ivy

Go to download

The part of the Cucumber Reports library directly responsible for reports generation.

The newest version!
<#function to_id text>
  <#return text?lower_case?replace("[^a-z0-9]", "-", "r")>



${refreshData}
${title}


  
    

${model.title}

<#assign offset = 0> <#assign barSize = model.width / stats?size> <#list stats as stat> <#assign total = stat.getFailed() + stat.getPassed() + stat.getSkipped() > <#assign scale = 0.9> <#if total gt 0> <#assign passedRatio = (scale * model.getHeight() * (stat.getPassed() / total)) > <#assign failedRatio = (scale * model.getHeight() * (stat.getFailed() / total)) > <#assign skippedRatio = (scale * model.getHeight() * (stat.getSkipped() / total)) > <#assign scaleTicksCount = 5> <#assign maxScaleValue = 100> <#assign vOffset = 10> <#list 0..scaleTicksCount as i> ${maxScaleValue - i * maxScaleValue / scaleTicksCount}% ${offset + 1} <#assign offset++>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy