如何在Fitnesse中为RowEntryFixture或ColumnFixture编写Teardown

时间:2015-11-03 07:54:52

标签: fitnesse fixture teardown

我正在使用RowEntryFixture处理一些数据,最后,我想执行一些代码,我该怎么做? 我正在使用fitnesse和C#

1 个答案:

答案 0 :(得分:0)

您可以覆盖DoTable:

public override void DoTable(Parse table) {
    DoRows(table.Parts.More);
    DoSomeStuffAtEnd();
}