gpt4 book ai didi

linux - Linux 中的 F# 单元测试项目与单声道(FAKE,NUnit 3)

转载 作者:IT王子 更新时间:2023-10-29 01:15:38 26 4
gpt4 key购买 nike

我正在尝试使用 Forge 在 Linux 中使用单声道设置一个非常简单的测试 F# 项目设置项目并安装 nuget 包。 Forge 创建一个使用 FAKE 的 build.fsx 文件。我尝试根据本教程的启发调整此构建文件(以便添加测试) http://fsharp.github.io/FAKE/gettingstarted.html .然而,本教程使用 C# 进行测试,并假设 Windows 和 .Net 作为环境。我想使用 F# 进行测试,使用 linux 和 mono 作为环境。

我想我几乎可以正常工作了,但是我从 NUnit 收到了一些神秘的错误消息。运行 build.fsx 文件时,最后出现以下错误:

...
Invalid argument: -nologo
The value '/home/michel/Documents/FSHARP/UnitTests/test/NUnit.Test.MyTests.dll' is not valid for option '--labels'.
Invalid argument: -xml:./test/TestResults.xml
Running build failed.
Error:
NUnit test failed (255).

---------------------------------------------------------------------
Build Time Report
---------------------------------------------------------------------
Target Duration
------ --------
Clean 00:00:00.0036366
Build 00:00:00.0402828
BuildTest 00:00:00.4911710
Total: 00:00:00.7494956
Status: Failure
---------------------------------------------------------------------
1) Fake.UnitTestCommon+FailedTestsException: NUnit test failed (255).
at Fake.NUnitSequential.NUnit (Microsoft.FSharp.Core.FSharpFunc`2 setParams, IEnumerable`1 assemblies) <0x41d27e50 + 0x0039f> in <filename unknown>:0
at FSI_0001+clo@32-4.Invoke (Microsoft.FSharp.Core.Unit _arg4) <0x41d27dc0 + 0x0006f> in <filename unknown>:0
at Fake.TargetHelper+targetFromTemplate@195[a].Invoke (Microsoft.FSharp.Core.Unit unitVar0) <0x41cd59b0 + 0x00023> in <filename unknown>:0
at Fake.TargetHelper.runSingleTarget (Fake.TargetTemplate`1 target) <0x41ccb490 + 0x000ca> in <filename unknown>:0

我的build.fsx 文件如下所示

// include Fake libs
#r "./packages/FAKE/tools/FakeLib.dll"

open Fake


// Directories
let buildDir = "./build/"
let testDir = "./test/"

// version info
let version = "0.1" // or retrieve from CI server

// Targets
Target "Clean" (fun _ ->
CleanDirs [buildDir; testDir]
)

Target "Build" (fun _ ->
//MSBuildDebug buildDir "Build" appReferences
!! "/UnitTesting/*.fsproj"
|> MSBuildRelease buildDir "Build"
|> Log "AppBuild-Output: "
)

Target "BuildTest" (fun _ ->
!! "src/NUnit.Test.MyTests/*.fsproj"
|> MSBuildDebug testDir "Build"
|> Log "TestBuild-Output: "
)

Target "Test" (fun _ ->
!! (testDir + "/NUnit.Test.MyTests.dll")
|> NUnit (fun p ->
{ p with
ToolPath = "packages/NUnit.ConsoleRunner/tools"
//DisableShadowCopy = true;
OutputFile = testDir + "TestResults.xml" })
)

Target "Default" (fun _ -> trace "HEEEELLOOOOOO world from FAKE!!!")

"Clean" ==> "Build" ==> "BuildTest" ==> "Test" ==> "Default"

RunTargetOrDefault "Default"

FAKE 似乎在packages/NUnit.ConsoleRunner/tools 目录下寻找nunit-console.exe 文件,但是没有这个文件。但是,有一个 nunit3-console.exe 文件,所以我只复制了一个名为 nunit-console.exe 的文件。

我的简单测试文件 NUnit.Test.MyTests.fs 如下所示:

namespace NUnit.Test.MyTests

module testmodule =

open NUnit.Framework

let SayHello name = "Hello"

[<TestFixture>]
type myFixture() =

[<Test>]
member self.myTest() =
Assert.AreEqual("Hello World!", SayHello "World")

并且文件 test/NUnit.Test.MyTests.dll 似乎生成得很好。

神秘的错误消息是什么意思,我该如何修复它以便运行测试?

最佳答案

正如 rmunn 在评论中提到的,我需要使用函数 NUnit3 因为我使用的是 NUnit 3.4.1 版。该函数位于 FAKE.Testing 模块中 http://fsharp.github.io/FAKE/apidocs/fake-testing-nunit3.html .我修改了我的 build.fsx 文件,现在它看起来像下面这样:

// include Fake libs
#r "./packages/FAKE/tools/FakeLib.dll"

open Fake
open Fake.Testing // NUnit3 is in here


// Directories
let buildDir = "./build/"
let testDir = "./test/"

// version info
let version = "0.1" // or retrieve from CI server
// Targets
Target "Clean" (fun _ ->
CleanDirs [buildDir; testDir]
)

Target "Build" (fun _ ->
!! "/UnitTesting/*.fsproj"
|> MSBuildRelease buildDir "Build"
|> Log "AppBuild-Output: "
)

Target "BuildTest" (fun _ ->
!! "src/NUnit.Test.MyTests/*.fsproj"
|> MSBuildDebug testDir "Build"
|> Log "TestBuild-Output: "
)

Target "Test" (fun _ ->
!! (testDir + "/NUnit.Test.*.dll")
|> NUnit3 (fun p ->
{ p with
ToolPath = "packages/NUnit.ConsoleRunner/tools/nunit3-console.exe" })
)


Target "Default" (fun _ -> trace "HEEEELLOOOOOO world from FAKE!!!")

"Clean" ==> "Build" ==> "BuildTest" ==> "Test" ==> "Default"

RunTargetOrDefault "Default"

请注意,您必须一直指定 ToolPathnunit3-console.exe 文件,而不仅仅是它所在的目录。

现在一切似乎都正常了,当我运行 build.fsx 时,我在控制台输出中得到了一个简单明了的“测试摘要”。 :)

关于linux - Linux 中的 F# 单元测试项目与单声道(FAKE,NUnit 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39726728/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com