如何在 Fitnesse 中为 RowEntryFixture 或 ColumnFixture 编写 Teardown
How to write Teardown for RowEntryFixture or ColumnFixture in Fitnesse
我正在使用 RowEntryFixture
来处理一些数据,最后,我想执行一些代码,我该怎么做?
我在 C#
中使用 fitnesse
您可以覆盖 DoTable:
public override void DoTable(Parse table) {
DoRows(table.Parts.More);
DoSomeStuffAtEnd();
}
我正在使用 RowEntryFixture
来处理一些数据,最后,我想执行一些代码,我该怎么做?
我在 C#
您可以覆盖 DoTable:
public override void DoTable(Parse table) {
DoRows(table.Parts.More);
DoSomeStuffAtEnd();
}