0
我如何在單元測試中傳遞一個對象? 這裏是我的代碼:在單元測試的屬性中傳遞一個對象
[Test]
[Row("test",5,new CustomField())]
public void Test_Constructor(string type, int number, CustomField customField)
{
.....
}
它返回一個錯誤:屬性參數必須是常量表達式的typeof屬性參數類型的表達式或數組創建表達式
這很好,但實際上,我的行屬性的格式是這樣的: [Row(「string」,5,new Class1()))]。我無法在我的測試中實施工廠。 –
您可以從工廠返回一個數組,查看「複雜工廠」示例。 – grahamrhay