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

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

Go to download

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

The newest version!
<#list scenario.feature.tags as tag>${tag.name} 
Feature: ${scenario.feature.name}
  ${scenario.feature.description}
  <#list scenario.tags as tag>${tag.name} 
  Scenario: ${scenario.name}
  	${scenario.description}
  	<#list scenario.steps as step>
    ${step.keyword} ${step.name}
    	<#if step.docString?has_content>
      """
      ${step.docString}
      """
    	
    	<#if step.rows?has_content>
    		<#list step.rows as row>
      <#list row as item> | ${item} |
    		
    	
  	
    




© 2015 - 2024 Weber Informatics LLC | Privacy Policy