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
Properties.overrideParameters method gets called but doesn't override parameters. A piece of code to reproduce:
Properties.overrideParameters
import org.scalacheck.Test.Parameters import org.scalacheck._ object StringSpecification extends Properties("String") { import Prop.forAll override def overrideParameters(p: Parameters): Parameters = { println("called") p.withMinSuccessfulTests(1) // this doesn't affect number of iterations } property("startsWith") = forAll { (a: String, b: String) => println("iteration") (a+b).startsWith(a) } }
Related to #234 but it didn't get called before this PR.
The text was updated successfully, but these errors were encountered:
Has anyone found a solution / workaround to this?
Sorry, something went wrong.
@ljwagerfield See #360 where this was more recently picked up
Closing this issue. A fix for overriding the parameters of properties was merged in #522.
No branches or pull requests
Properties.overrideParameters
method gets called but doesn't override parameters.A piece of code to reproduce:
Related to #234 but it didn't get called before this PR.
The text was updated successfully, but these errors were encountered: