0

我怎么能在我的单元测试中传递一个对象?这是我的代码:

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

它返回错误:属性参数必须是属性参数类型的常量表达式、typeof 表达式或数组创建表达式

4

1 回答 1

2

您可以使用工厂:

http://gallio.org/wiki/doku.php?id=mbunit:da​​ta-driven_testing:factory

于 2012-07-04T16:43:07.910 回答