Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
It sounds a bit like you're referencing a version of NUnit from the FsCheck integration that is different from the version NUnit is running with. That may cause it to be confused about the types of the TestAttribute. More context about your setup might help here. To diagnose I'd recommend looking at the loaded modules under a debugger. If you see two instances of a particular assembly loaded (with different versions), that explains it. I guess another redirect for those two might fix it. – Kurt Schelfthout Aug 11 '12 at 19:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.