fitnesse.fixtures.TableOrDecisionFixture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fitnesse.fixtures;
import java.util.LinkedList;
import java.util.List;
public class TableOrDecisionFixture {
public String parsingAs() {
return "Parsed as Decision fixture";
}
public List> doTable(List> table) {
List firstRow = new LinkedList<>();
firstRow.add("");
firstRow.add("pass: Parsed as Table fixture");
List> returnList = new LinkedList<>();
returnList.add(firstRow);
return returnList;
}
}