I am using RowEntryFixture
to process some data, at the end of it, I want to execute some code, how can i do that?
I am using fitnesse with C#
You can override DoTable:
public override void DoTable(Parse table) {
DoRows(table.Parts.More);
DoSomeStuffAtEnd();
}