1

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#

Nitin Chaudhari
  • 1,497
  • 16
  • 39

1 Answers1

0

You can override DoTable:

public override void DoTable(Parse table) {
    DoRows(table.Parts.More);
    DoSomeStuffAtEnd();
}
Mike Stockdale
  • 5,256
  • 3
  • 29
  • 33