Created
May 8, 2015 16:14
-
-
Save NickHeiner/33bfa29540a2819e8e23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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