Skip to content

Instantly share code, notes, and snippets.

@JonCanning
Created February 24, 2014 16:37
Show Gist options
  • Save JonCanning/9191760 to your computer and use it in GitHub Desktop.
Save JonCanning/9191760 to your computer and use it in GitHub Desktop.
[<TestFixture>]
type When() =
[<DefaultValue>] val mutable message : string
do
printfn "Constructor"
[<TestFixtureSetUp>]
member x.TestFixtureSetUp() =
printfn "TestFixtureSetUp"
[<Test>]
member x.Test() =
printfn "Test"
[<TestFixtureTearDown>]
member x.TestFixtureTearDown() =
printfn "TestFixtureTearDown"
interface IDisposable with
member x.Dispose() =
printfn "Dispose"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment