Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FsCheck.NUnit does not properly handle NUnit's signalling exceptions. #627

Open
teo-tsirpanis opened this issue Mar 28, 2023 · 1 comment

Comments

@teo-tsirpanis
Copy link

Try this:

[FsCheck.NUnit.Property]
public void TestSuccess(int x)
{
    Assert.Pass();
}

The test should have passed but instead fails. I am using version 3.0.0-beta2.

@kurtschelfthout
Copy link
Member

Yes, that's because every exception is interpreted as a fail. We need to filter for whatever exception NUnit throws from Assert.Pass in FsCheck.Nunit, I guess.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants