Created
August 27, 2017 20:07
-
-
Save pstephens/6413d78d638fdf5cb5f5f5cc6a79399b to your computer and use it in GitHub Desktop.
RiderNonRepro
This file contains 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 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