Search code examples
fitnessefixtureteardown

How to write Teardown for RowEntryFixture or ColumnFixture in Fitnesse


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#


Solution

  • You can override DoTable:

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