The "propertyCheck" function that is referenced within my test method is NOT recognized when I attempt to build my test.
I thought that propertyChecked was a core function of the FsCheck framework?
What other ceremony do I need to perform?
module Tests.Units
open FsUnit
open NUnit.Framework
open NUnit.Core.Extensibility
open FsCheck.NUnit
open FsCheck.NUnit.Addin
let add x y = (x + y)
let commutativeProperty x y =
let result1 = add x y
let result2 = add y x // reversed params
result1 = result2
[<Test>]
let ``When I add two numbers, the result should not depend on parameter order``()=
propertyCheck commutativeProperty |> should equal true