Last active
November 10, 2016 12:40
-
-
Save bartsokol/4a37a7942b3157778bc95fdb57b08df7 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
namespace TestLib | |
open NUnit.Framework | |
// Only module visible in VS, no test results reported by ReSharper | |
[<TestFixture>] | |
module Tests = | |
open FsUnit | |
[<Test>] | |
let ``2 + 2 is four`` = | |
2 + 2 |> should equal 5 |
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
namespace TestLib | |
// No tests visible in ReSharper | |
module Tests = | |
open FsUnit | |
open NUnit.Framework | |
[<Test>] | |
let ``2 + 2 is four`` = | |
2 + 2 |> should equal 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment