-
**Summary**
A `Prop` generated by a function can succeed or fail depending on how it is "registered" in the
source code. This seems to be due to the handling of the lazy `Prop` argument to
`Prope…
-
Bug first seen in upgrade to version 0.13.0 (was 0.11.4 for last successful build).
Repository - [Americium](https://github.com/sageserpent-open/americium)
Observed in Git commit SHA: 36f61a49a5…
-
```scala
package net.bestqa
import cats.effect.{ExitCode, IO, IOApp}
import org.http4s.HttpRoutes
import org.http4s.dsl.io._
import org.http4s.implicits._
import org.http4s.ember.server.EmberS…
-
Transferred from http://code.google.com/p/scalacheck/issues/detail?id=83
#82 requests a timeout for any particular test. It would also be nice if Test.Params had an option for max duration of the enti…
-
Using one of the quickcheck implementations.
xedin updated
9 years ago
-
I am getting the following error when I try to define a scalacheck property that generates an object with miniboxed annotation:
```
Error:(42, 10) Using the type argument "Any" for the miniboxed type…
-
This is partly prompted by some thoughts after my [tweet](https://twitter.com/JRCCollier/status/1207808806173990912) in response to the question of how to improve Scala adoption.
> Trusted cohesive…
-
I downloaded all Scala 2.11 poms from maven central (~50 000 poms). Almost 10% fails to load because they are invalid poms.
For example: you cannot duplicate license tags, but sbt permits that https:…
-
I'm proposing something like:
```
def sizedDistinctListOf[T](size: Int, gen: Gen[T], eq: (T, T) => Boolean): Gen[List[T]]
```
In my own codebase, I've got something similar where `T` is constr…
wjlow updated
3 years ago
-
I am working on a software for logic inference, where I am processing lists of non-zero values. My test looks like:
```
val big_literal = Gen.oneOf(Gen.choose(-50, -1), Gen.choose(1, 50))
val big…