带有ExpectedException的单元工厂属性



当我使用Factory属性时,是否有一种方法可以编写我期望某些输入的特定异常?我知道如何使用Row属性,但我需要它动态生成的测试输入。

请参阅下面的测试示例,该函数返回所提供字符串的逆:

[TestFixture]
public class MyTestFixture()
{
   private IEnumerable<object[]> TestData
   {
      get
      {
          yield return new object[] { "MyWord", "droWyM" };
          yield return new object[] { null, null }; // Expected argument exception
          yield return new object[] { "", "" };
          yield return new object[] { "123", "321" };
      }
   }
   [Test, Factory("TestData")]
   public void MyTestMethod(string input, string expectedResult)
   {
      // Test logic here...   
   }
}

恐怕没有内置功能将元数据(例如预期的异常)附加到来自工厂方法的一行测试参数。

然而,一个简单的解决方案是将预期异常的类型作为测试常规参数传递(null如果不期望抛出异常),并将测试代码包含在Assert.ThrowsAssert.DoesNotThrow方法中。

[TestFixture]
public class MyTestFixture()
{
  private IEnumerable<object[]> TestData
  {
    get
    {
        yield return new object[] { "MyWord", "droWyM", null };
        yield return new object[] { null, null, typeof(ArgumentNullException) };
        yield return new object[] { "", "", null };
        yield return new object[] { "123", "321", null };
    }
  }
  [Test, Factory("TestData")]
  public void MyTestMethod(string input, string expectedResult, Type expectedException)
  {
    RunWithPossibleExpectedException(expectedException, () => 
    {
       // Test logic here... 
    });
  }
  private void RunWithPossibleExpectedException(Type expectedException, Action action)
  {
    if (expectedException == null)
      Assert.DoesNotThrow(action);
    else
      Assert.Throws(expectedException, action);
  }
}
顺便说一下,有一个额外的Assert.MayThrow断言来摆脱helper方法可能会很有趣。它可以只接受null作为预期的异常类型。也许你可以在这里创建一个功能请求,或者你可以提交一个补丁。

相关内容

  • 没有找到相关文章

最新更新