为什么在使用选项初始化记录时会收到错误?
以下行未通过我的单元测试:
let name = { First=String20("Scott"); Last=String20("Nimrod"); Suffix=None }
测试结果:
结果StackTrace:在CreateModuleViewModel.Tests.submit模块() 结果消息:System.MissingMethodException:找不到方法: ' Void Name..ctor(String20,String20, Microsoft.FSharp.Core.FSharpOption`1)'
测试如下:
module CreateModuleViewModel.Tests
open FsUnit
open NUnit.Framework
open UILogic.State
open CreateModule.UILogic
open ManageModule.Entities
[<Test>]
let ``submit module`` () =
// Setup
let viewModel = CreationViewModel()
let name = { First=String20("Scott"); Last=String20("Nimrod"); Suffix=None }
let duration = { Hours=1; Minutes=30; Seconds=0 }
let moduleItem = { Author=name; Duration=duration }
// Tets
viewModel.Add(moduleItem)
// Verify
viewModel.Modules.Head = moduleItem |> should equal true
记录定义如下:
type String20 = String20 of string
type Name = {
First:String20
Last:String20
Suffix:String20 option
}
为什么我收到此错误?
答案 0 :(得分:4)
MissingMethodException
的最常见原因是某些依赖项是针对不同版本的FSharp.Core.dll
编译的,而不是单元测试库。
解决此问题的方法是将bindingRedirect
添加到app.config
。我认为大多数单元测试运行器也会尊重绑定重定向,因此这应该可以解决问题。
Mark Seemann has a blog post about this。窃取他的榜样,你需要这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core"
publicKeyToken="b03f5f7f11d50a3a"
culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-99.99.99.99"
newVersion="4.3.1.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
newVersion
将是4.3.1.0
(Visual Studio 2013)或4.4.0.0
(Visual Studio 2015)。我将此处的oldVersion
更改为应包含可能存在的所有版本的范围。
这导致MethodMissingException
的原因有点微妙 - 但是如果没有重定向,那么运行时就会出现这种情况。来自一个F#Core的option<T>
与来自另一个版本的F#Core的option<T>
不同,因此无法找到它所期望的方法。