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

fitnesse.fixtures.TableOrDecisionFixture Maven / Gradle / Ivy

There is a newer version: 20241026
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy