FitNesse / FitSharp - 动态读取 ColumnFixture 的列

FitNesse / FitSharp - Read columns of ColumnFixture dynamically

我正在使用 FitNesse / FitSharp (c#) 进行测试。

我可以创建像 ColumnFixtures、RowFixtures、DoFixtures 等普通夹具,但我正在寻找一种方法来读取列并动态绑定它们。

这样做的原因是,我自己的库中仍然有大量的 Pojo 对象,不想再次重复所有 class 成员。因此,我正在寻找一种动态处理列的方法。

例如

!|Create| pojoType | record | pojoName |
 |Name  | LastName | Address| Misc     |
 | a    | b        | c      | d        |


public class DynamicHandling : DoFixture () {
   public void CreateRecord(string type, string name) {
      var clazz = GetClazzOfType();

      var headers = GetHeadersOfColumn();
      var values = GetValuesOfColumn();

      var pojo = DoBindingAndAssignValues(headers, rows, clazz);

      // ... Continue with whatever e.g.  ...

      var name = pojo.Name;
      var lastName = pojo.LastName;
      var address = pojo.Address;

      address.split(';') ... 
   }
}

有什么想法吗?

查看计算装置 (https://fitsharp.github.io/Fit/ComputeFixture.html) 的源代码,看看是否有帮助。

您可以像这样编写一个动态处理单元格的装置:

public class MyFixture: Interpreter {
  public void Interpret(CellProcessor processor, Tree<Cell> table) {
    new Traverse<Cell>()
      .Rows.Header(row => FunctionThatDoesSomethingWithTheHeaderRow(row))
      .Rows.Rest(row => FunctionThatDoesSomethingWithEachSubsequentRow(row))
      .VisitTable(table);
  }
  ...
}

您还可以遍历其他行集 - 查看遍历源代码。