F#如何设置可以使用FsUnit的FAKE项目

时间:2017-01-23 21:08:27

标签: f# visual-studio-code f#-fake fsunit

我正在尝试设置一个可运行FsUnit的基本FAKE F#项目,但我无法弄清楚如何解决Method not found: 'Void FsUnit.TopLevelOperators.should(Microsoft.FSharp.Core.FSharpFunc`2<!!0,!!1>, !!0, System.Object)'错误。

我已经阅读了以下似乎相关的帖子,但我显然仍然不喜欢它:

我使用以下设置创建了一个JunkTest库项目:

paket.dependencies

source https://www.nuget.org/api/v2
nuget FAKE
nuget FSharp.Core
nuget FsUnit
nuget NUnit
nuget NUnit.Console

paket.references

FSharp.Core
FsUnit
NUnit

JunkTest.fs

module JunkTest

open FsUnit
open NUnit.Framework

[<Test>]
let ``Example Test`` () =
    1 |> should equal 1               // this does not work
    //Assert.That(1, Is.EqualTo(1))   // this works (NUnit)

build.fsx(相关部分)

Target "Test" (fun _ ->
    !! (buildDir + "JunkTest.dll")
    |> NUnit3 (fun p ->
        {p with OutputDir = "TestResults" }
    )
)

输出

我看到正在从本地packages目录复制FSharp.Core.dll:Copying file from "c:\Users\dangets\code\exercism\fsharp\dgt\packages\FSharp.Core\lib\net40\FSharp.Core.dll" to "c:\Users\dangets\code\exercism\fsharp\dgt\build\FSharp.Core.dll".

nunit3-console执行:c:\Users\dangets\code\exercism\fsharp\dgt\packages\NUnit.ConsoleRunner\tools\nunit3-console.exe "--noheader" "--output=TestResults" "c:\Users\dangets\code\exercism\fsharp\dgt\build\JunkTest.dll"

我尝试使用以下内容在测试项目根目录中添加app.config文件,但它似乎无法解决问题(注意我没有使用Visual Studio - 我是否需要执行此操作项目包含app.config文件的特殊内容?):

<?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-4.3.1.0" newVersion="4.3.1.0" />
        </dependentAssembly>
      </assemblyBinding>
    </runtime>
</configuration>

感谢任何和所有帮助。

编辑:解决方案是我没有正确设置App.config文件以包含在构建中。所有回答“只是将其添加到您的App.config文件”对我没有帮助,因为VSCode不会自动将其添加到fsproj文件中。

我添加的部分是:

<None Include="App.config" />

包含其他ItemGroup行的<Compile Include=Foo.fs>

2 个答案:

答案 0 :(得分:4)

由于FSharp.Core版本不匹配,会发生这种情况。请参阅,您的应用程序引用了FSharp.Core的一个版本,FsUnit引用了另一个版本。这意味着FSharpFunc<_,_>类型将与您和FsUnit不同(来自不同的程序集),这反过来意味着should导出的FsUnit函数是与您的代码正在寻找的功能不同,因为它具有不同类型的参数。

这是bindingRedirect进来的地方。您已经完全正确地将其添加到app.config,但是根据您是否正确执行此操作的问题,我怀疑你可能不会。 app.config的问题是,它实际上并不是程序配置。相反,它是用于程序配置的源代码。在编译时,此文件将被复制到bin\Debug\Your.Project.dll.config,然后才会在运行时获取。如果您没有将此文件添加到fsproj项目文件中(我怀疑可能是这种情况),那么在构建期间它不会被复制到正确的位置,因此不会#39;在运行时被拿起。

它仍无法正常工作的另一个原因可能是您在FSharp.Core文件中指定了app.config的错误版本。这让我想到了下一点。

手工制作该文件有点脆弱:当您将FSharp.Core升级到新版本(或者Paket为您完成)时,您可能忘记在app.config中修复它,即使您不要,这有点麻烦。但Paket可以为您提供帮助:如果您将redirects: on options添加到paket.dependencies文件中,Paket会自动将bindingRedirect信息添加到您的app.config

source https://www.nuget.org/api/v2
nuget FAKE
nuget FSharp.Core redirects: on
nuget FsUnit
nuget NUnit
nuget NUnit.Console

答案 1 :(得分:1)

这听起来像FSharp.Core版本不匹配。

您使用的NuGet包附带FSharp.Core 4.4(不是4.3.1)。我建议修改绑定重定向以使用4.4:

<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.4.0.0" />