Skip to content

Instantly share code, notes, and snippets.

@NickHeiner
Created May 8, 2015 16:14
Show Gist options
  • Save NickHeiner/33bfa29540a2819e8e23 to your computer and use it in GitHub Desktop.
Save NickHeiner/33bfa29540a2819e8e23 to your computer and use it in GitHub Desktop.
module MainTest
open NUnit.Framework
[<Test>]
let ``When 2 is added to 2 expect 4``() =
Assert.AreEqual(4, 2+2)
[<Test>]
let ``When 2 is added to 2 expect 5``() =
Assert.AreEqual(5, 2+2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment