com.github.mkolisnyk.aerial.document.AdditionalScenariosSection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aerial Show documentation
Show all versions of aerial Show documentation
Generates Cucumber scenarios based on text descriptions
/**
* .
*/
package com.github.mkolisnyk.aerial.document;
/**
* @author Myk Kolisnyk
*
*/
public class AdditionalScenariosSection extends
DocumentSection {
public AdditionalScenariosSection(DocumentSection> container,
String tagValue) {
super(container, tagValue);
}
/**
* @param container
*/
public AdditionalScenariosSection(DocumentSection> container) {
super(container);
}
public AdditionalScenariosSection parse(String input) throws Exception {
super.parse(input);
return this;
}
public String generate() throws Exception {
return this.getContent();
}
}