Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我RowEntryFixture用来处理一些数据,最后,我想执行一些代码,我该怎么做?我正在使用 C# 的 Fitnesse
RowEntryFixture
您可以覆盖 DoTable:
public override void DoTable(Parse table) { DoRows(table.Parts.More); DoSomeStuffAtEnd(); }