2010-03-28 19 views
1

我試圖做一個動作夾具,它不工作。 (C#與修身亞軍)如何在C#中使用fitnesse ActionFixture?

基本上它似乎是試圖解釋它爲一個列夾具。

|!-Fitnesse.BuyActions-!  | 
|Start|!-Fitnesse.BuyActions-!| 
|check|total  |0.0  | 
|enter|price  |12.00  | 
|press|buy     | 
|check|total  |12.00  | 
|enter|price  |100.00  | 
|press|buy     | 
|check|total  |112.00  | 



Fitnesse.BuyActions 

Start 
Fitnesse.BuyActions 

檢查方法setStart在Fitnesse.BuyActions

using fit; 
namespace Fitnesse 
{ 
    public class BuyActions : ActionFixture 
    { 
     public BuyActions() 
      : base() 
     { 
      this.targetObject = this; 
     } 
    } 
} 
+0

不幸的是,FitNesse不是SO上流行或知名的主題。我監視它是因爲它在我的待辦事項清單上,但不幸的是我自己還沒有知道它(還)。祝你好運找到答案,如果你想出答案,絕對回答你自己的問題,以便將來有相同問題的人可以找到這個頁面作爲參考! – Ricket 2010-03-28 23:55:59

回答