I have a trivial bit of F# code that uses NUnit and an old release of FsCheck. A smaller version that does not use FsCheck works just fine. However, with FsCheck included, NUnit will suddenly claim that it can no longer even see the compiled test, never mind load it.
I suspect that the most relevant debug info is the output of AsmSpy (I don't really know what it means, though previous replies suggested the information might help):
Reference: mscorlib
2.0.0.0 by FsCheck
4.0.0.0 by FSharp.Core
2.0.0.0 by nunit.framework
Reference: FSharp.Core
2.0.0.0 by FsCheck
Reference: System.Core
3.5.0.0 by FsCheck
4.0.0.0 by FSharp.Core
Reference: System
2.0.0.0 by FsCheck
4.0.0.0 by FSharp.Core
2.0.0.0 by nunit.framework
Reference: System.Numerics
4.0.0.0 by FSharp.Core
Reference: System.Xml
2.0.0.0 by nunit.framework
Next up is my App.config The code compiles cleanly with it in place. Otherwise I get the usual warning about conflicts.
<?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.0.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
Finally my code:
open NUnit.Framework
open FsCheck
let xUnitRunner =
{ new IRunner with
member x.OnStartFixture t = ()
member x.OnArguments (ntest,args, every) = ()
member x.OnShrink(args, everyShrink) = ()
member x.OnFinished(name,testResult) =
match testResult with
| TestResult.True _ -> ()
| _ -> failwithf "Property does not hold: %s" (Runner.onFinishedToString name testResult)
}
let withxUnitConfig = { Config.Default with Runner = xUnitRunner }
let checkProperty (p:'a) : unit =
Check.One (withxUnitConfig, p)
[<TestFixture>]
type testfixture () =
[<Test>]
member x.test () =
checkProperty (fun (i:int) -> true)
[<EntryPoint>]
let main _ =
(testfixture ()).test ()
0
I'll be most grateful for any help with this.