Skip to content

Instantly share code, notes, and snippets.

@bartsokol
Last active November 10, 2016 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartsokol/4a37a7942b3157778bc95fdb57b08df7 to your computer and use it in GitHub Desktop.
Save bartsokol/4a37a7942b3157778bc95fdb57b08df7 to your computer and use it in GitHub Desktop.
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
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