使用NUnit和AutoData的AutoFixture会抛出TargetParameterCountException

时间:2016-02-24 10:24:25

标签: c# unit-testing nunit autofixture

在我的单元测试项目中,我安装了AutoFixture(v3.40.0),NUnit(v2.6.4。)和AutoFixtrue.NUnit2(v3.39.0)。
我正在其中一个虚拟测试用例

上使用AutoData属性
[Test, AutoData]
public void IntroductoryTest(
    int expectedNumber)
{               

}

,但在运行测试时,我得到了

System.Reflection.TargetParameterCountException : Parameter count mismatch.
   at System.Reflection.RuntimeMethodInfo.InvokeArgumentsCheck(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at NUnit.Core.Reflect.InvokeMethod(MethodInfo method, Object fixture, Object[] args)
   at NUnit.Core.TestMethod.RunTestMethod()
   at NUnit.Core.TestMethod.RunTestCase(TestResult testResult)

有什么我没有安装或我遗失的吗?

1 个答案:

答案 0 :(得分:4)

该异常是由NUnit未在运行时加载AutoFixture add-in 引起的,因此测试参数不会获得任何参数。

原因是AutoFixture.NUnit2是针对版本2.6.2编译的,因此如果您想将其与2.6.4一起使用,则必须添加以下assembly binding redirects测试项目的配置文件:

<configuration>
    <runtime>
        <dependentAssembly>
            <assemblyIdentity
                name="nunit.core.interfaces" 
                publicKeyToken="96d09a1eb7f44a77"
                culture="neutral" />
            <bindingRedirect
                oldVersion="0.0.0.0-2.6.4.14350"
                newVersion="2.6.4.14350" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity
                name="nunit.core"
                publicKeyToken="96d09a1eb7f44a77"
                culture="neutral" />
            <bindingRedirect
                oldVersion="0.0.0.0-2.6.4.14350"
                newVersion="2.6.4.14350" />
          </dependentAssembly>
    </runtime>
</configuration>

请注意,您需要重定向到的NUnit版本是 test runner 使用的版本,可能与编译时使用的版本不同。

因此,虽然您可能正在针对版本2.6.4编译测试,但如果您的测试运行器使用版本2.6.3,则您需要重定向到2.6.3

<configuration>
    <runtime>
        <dependentAssembly>
            <assemblyIdentity
                name="nunit.core.interfaces" 
                publicKeyToken="96d09a1eb7f44a77"
                culture="neutral" />
            <bindingRedirect
                oldVersion="0.0.0.0-2.6.3.13283"
                newVersion="2.6.3.13283" />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity
                name="nunit.core"
                publicKeyToken="96d09a1eb7f44a77"
                culture="neutral" />
            <bindingRedirect
                oldVersion="0.0.0.0-2.6.3.13283"
                newVersion="2.6.3.13283" />
          </dependentAssembly>
    </runtime>
</configuration>