Skip to content

Instantly share code, notes, and snippets.

@pstephens
Created August 27, 2017 20:07
Show Gist options
  • Save pstephens/6413d78d638fdf5cb5f5f5cc6a79399b to your computer and use it in GitHub Desktop.
Save pstephens/6413d78d638fdf5cb5f5f5cc6a79399b to your computer and use it in GitHub Desktop.
RiderNonRepro
namespace Collections
module RiderReproTests =
open FsCheck.Xunit
open Xunit
[<Property>]
let repro_test_pass (_:int) = true
[<Property>]
let repro_test_fail (_:int) = false
[<Fact>]
let xunit_test_pass() =
Assert.Equal(1, 1)
[<Fact>]
let xunit_test_fail() =
Assert.Equal(1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment