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

fitnesse.slim.test.TableTableIncFirstCol Maven / Gradle / Ivy

package fitnesse.slim.test;

import java.util.ArrayList;
import java.util.List;

public class TableTableIncFirstCol {

  public List> doTable(List> table) {
    List> ret = new ArrayList<>();

    for (List line : table) {
      List retLine = new ArrayList<>();
      ret.add(retLine);

      retLine.add("no change");
      retLine.add("pass:" + (Integer.parseInt(line.get(0).toString()) + 1));
    }

    return ret;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy