如何将DateTime设置为ValuesAttribute进行单元测试?

时间:2010-12-03 10:35:58

标签: c# unit-testing nunit

我想做这样的事情

[Test]
public void Test([Values(new DateTime(2010, 12, 01), 
                         new DateTime(2010, 12, 03))] DateTime from, 
                 [Values(new DateTime(2010, 12, 02),
                         new DateTime(2010, 12, 04))] DateTime to)
{
    IList<MyObject> result = MyMethod(from, to);
    Assert.AreEqual(1, result.Count);
}

但是我收到有关参数的以下错误

  

属性参数必须是a   常量表达式,表达式   

的数组创建表达式

有什么建议吗?


更新:关于NUnit 2.5中参数化测试的好文章 http://www.pgs-soft.com/new-features-in-nunit-2-5-part-1-parameterized-tests.html

3 个答案:

答案 0 :(得分:25)

替代膨胀您的单元测试,您可以使用TestCaseSource属性卸载TestCaseData的创建。

TestCaseSource属性允许您在将由NUnit调用的类中定义方法,并且方法中创建的数据将传递到您的测试用例中。

此功能在NUnit 2.5中可用,您可以了解更多here ...

[TestFixture]
public class DateValuesTest
{
    [TestCaseSource(typeof(DateValuesTest), "DateValuesData")]
    public bool MonthIsDecember(DateTime date)
    {
        var month = date.Month;
        if (month == 12)
            return true;
        else
            return false;
    }

    private static IEnumerable DateValuesData()
    {
        yield return new TestCaseData(new DateTime(2010, 12, 5)).Returns(true);
        yield return new TestCaseData(new DateTime(2010, 12, 1)).Returns(true);
        yield return new TestCaseData(new DateTime(2010, 01, 01)).Returns(false);
        yield return new TestCaseData(new DateTime(2010, 11, 01)).Returns(false);
    }
}

答案 1 :(得分:15)

只需将日期作为字符串常量传递并在测试中解析。 有点烦人,但这只是一个测试,所以不要太担心。

[TestCase("1/1/2010")]
public void mytest(string dateInputAsString)
{
  DateTime dateInput= DateTime.Parse(dateInputAsString);
  ...
}

答案 2 :(得分:3)

定义一个接受六个参数的自定义属性,然后将其用作

[Values(2010, 12, 1, 2010, 12, 3)]

然后相应地构造DateTime的必要实例。

或者你可以做到

[Values("12/01/2010", "12/03/2010")]

因为它可能更具可读性和可维护性。

如错误消息所示,属性值不能是非常量的(它们嵌入在程序集的元数据中)。与外观相反,new DateTime(2010, 12, 1)不是一个常数表达式。