我正在为一个类编写单元测试,在检查每个参数是否为空时,我希望有单独的异常消息。
我不知道如何实现下面的GetParameterNameWithReflection方法:

public class struct SUT
{
    public SUT(object a, object b, object c)
    {
        if (a == null)
        {
            throw new ArgumentNullException(nameof(a));
        }

        // etc. for remaining args

        // actual constructor code
    }
}

[TextFixture]
public class SutTests
{
    [Test]
    public void constructor_shouldCheckForFirstParameterNull()
    {
        var ex = Assert.Throws<ArgumentNullException>(new Sut(null, new object(), new object()));

        string firstParameterName = GetParameterNameWithReflection(typeof(SUT);)

        Assert.AreEqual(firstParameterName, ex.ParamName);
    }
}

作为奖励,对这种类型测试的适当性的评论是非常受欢迎的!

最佳答案

怎么样:

static string GetFirstParameterNameWithReflection(Type type)
{
    return type.GetConstructors().Single().GetParameters().First().Name;
}

它断言只有一个构造函数,获取参数,断言至少有一个这样的构造函数并返回名称。

10-06 01:07