final case class TestV2(repeats: Int, retries: Int, samples: Int, shrinks: Int, checkAspect: CheckAspect) extends TestConfig with Product with Serializable
- Alphabetic
- By Inheritance
- TestV2
- Product
- Equals
- TestConfig
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- val checkAspect: CheckAspect
Aspect that should be applied to each check sample.
Aspect that should be applied to each check sample.
NOTE: default implementation for backward compatibility. Remove in next major version.
- Definition Classes
- TestV2 → TestConfig
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val repeats: Int
The number of times to repeat tests to ensure they are stable.
The number of times to repeat tests to ensure they are stable.
- Definition Classes
- TestV2 → TestConfig
- val retries: Int
The number of times to retry flaky tests.
The number of times to retry flaky tests.
- Definition Classes
- TestV2 → TestConfig
- val samples: Int
The number of sufficient samples to check for a random variable.
The number of sufficient samples to check for a random variable.
- Definition Classes
- TestV2 → TestConfig
- val shrinks: Int
The maximum number of shrinkings to minimize large failures
The maximum number of shrinkings to minimize large failures
- Definition Classes
- TestV2 → TestConfig