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#
Asked
Active
Viewed 108 times
1

Nitin Chaudhari
- 1,497
- 16
- 39
1 Answers
0
You can override DoTable:
public override void DoTable(Parse table) {
DoRows(table.Parts.More);
DoSomeStuffAtEnd();
}

Mike Stockdale
- 5,256
- 3
- 29
- 33