We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i ran into a lot of random test failures for something that had
static Generator<List<Integer>> ints(){ Gen.list( Gen.these(1,2,3), 2, 2 ) }
I expected to only get 1 entry (no entrys that violated my rules of min=2) but got 2, 1 violation the rules.
workaround is to append a filter after
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i ran into a lot of random test failures for something that had
I expected to only get 1 entry (no entrys that violated my rules of min=2) but got 2, 1 violation the rules.
workaround is to append a filter after
The text was updated successfully, but these errors were encountered: