2012-07-04 71 views
0

我如何在單元測試中傳遞一個對象? 這裏是我的代碼:在單元測試的屬性中傳遞一個對象

[Test]   
    [Row("test",5,new CustomField())]  
    public void Test_Constructor(string type, int number, CustomField customField) 
    { 
     ..... 
    } 

它返回一個錯誤:屬性參數必須是常量表達式的typeof屬性參數類型的表達式或數組創建表達式

回答