-
Normally you can do some setup and tear down before and after your tests:
```
testOptions in Test += Tests.Setup( loader => ... )
testOptions in Test += Tests.Cleanup( loader => ... )
```
> Note: Wh…
-
It would be great if there was a library of reusable Generators / Arbitrary instances.
Over time we have noticed a certain set of generators that are project-independent and come in handy in when r…
-
So in PR https://github.com/scalatest/scalatest/pull/2155 I fixed the `Prettifier` so that it works on case classes however I noticed that its still not being applied even when using `implicit val pre…
-
The required context gets lost when defining methods on an effect as extension methods, but not when an extension is defined as a top-level extension method. When defined as a typeclass, the effect ty…
-
ScalaCheck has a really cool API for testing stateful systems. [User Guide](https://github.com/rickynils/scalacheck/wiki/User-Guide#stateful-testing). [Presentation](https://www.scalacheck.org/files/s…
-
We want all the projects to use the same test library, [scalaz-zio](https://github.com/scalaz/scalaz-zio/blob/d9a136469212f0ab14c0d6cab221386b28254e78/build.sbt#L39) uses specs2.
The plugin already…
-
Is there a todo list for releasing 3.1 on scala 2.13 with scalacheck 1.14?
If there's a public list it would help, so that people can contribute to help speed the release along
-
example of it happening on Ubuntu, in the Scala community build: https://scala-ci.typesafe.com/job/scala-2.13.x-jdk14-integrate-community-build/628/console
but I have also seen it happen outside db…
-
Property-based testing is a powerful approach for testing.
It came from Haskell community (original lib called [QuickCheck](https://hackage.haskell.org/package/QuickCheck)), but there are analogs for…
-
When using property checks for complex logic it is sometimes impractical to increase the `minSuccessful` config setting to a level that "always" finds all problems.
Rather one relies on the tests to s…