ScalaCheck is a powerful tool for automatic unit testing of Scala and Java programs.

learn more… | top users | synonyms

-1
votes
1answer
33 views

Scalacheck arbitrary with generics

I'm trying to generate an arbitrary list as follows: scala> def validPairs[T] = Arbitrary.arbitrary[List[(T, Option[T])]] suchThat(!_.isEmpty) <console>:8: error: could not find implicit ...
0
votes
0answers
107 views

Test Driven Developement in SCALA [closed]

I am new to SCALA. Can you guide me about how to do with Test Driven Development(TDD) using SCALA. I knew about specs2, but I am looking for more examples. I am following Play scala reference but ...
0
votes
0answers
72 views

Generate pseudo random test with Scalacheck

I want to test my code with Property based testing style. I have some generator, that always generates Some(data), the data is never filtered out. I want to run let's say 100 tests, with the same set ...
1
vote
1answer
51 views

Exclude scalacheck from the scala runner's classpath in Scala 2.9.2

A scalacheck jar was accidentally included in the standard distribution of Scala 2.9.2, in the lib directory, along with the standard scala runtime classes (e.g. scala-library.jar). This was ...
1
vote
1answer
78 views

sbt `compile` task is not finding scalacheck

I have added the following in build.sbt. libraryDependencies <<= scalaVersion { scala_version => Seq( <other entries> "org.scalacheck" %% "scalacheck" % "1.10.0" % "test", ...
3
votes
2answers
199 views

generating *interesting* strings at random in Java [closed]

I've been using ScalaCheck for automatic unit testing. Its default String generator (i.e., its default Arbitrary[String] instance) is a little too powerful, generally producing an unreadable jumble ...
3
votes
3answers
100 views

Scalacheck: Generate list corresponding to list of generators

I want to generate a list of integers corresponding to a list of generators in ScalaCheck. import org.scalacheck._ import Arbitrary.arbitrary val smallInt = Gen.choose(0,10) val ...
2
votes
1answer
56 views

Scalacheck prop type mismatch

I've come across this error a few times. It's pretty self explanatory, the mismatch is coming on my ans var that is an Int, as I believe it should be, however it's wanting type prop. I have a feeling ...
0
votes
1answer
107 views

Acquiring 2 implicits for scalacheck function

I am using scalacheck and am in the middle of a generic-programming soup right now. The official guide shows this example: def matrix[T](g: Gen[T]): Gen[Seq[Seq[T]]] = Gen.sized { size => val ...
1
vote
1answer
133 views

Scalacheck, unit testing multi-process algorithms

I am currently developing a Scala framework for multi-process, parallel algorithms using MPJ-Express (i.e. a Java MPI-variant). MPJ-Express, and basically all MPI-variants, work by starting many ...
1
vote
2answers
144 views

Identify exact failed match from failed Scalacheck property in specs2

I am running a specs2 test suite from sbt, using the test command. When a ScalaCheck property fails, I just get to see the filename and line number in my code where the specs2 match fails - which is ...
0
votes
1answer
39 views

ScalaCheck selection without replacement

How can I write a Gen[A] using ScalaCheck that never returns the same object twice? Gen.oneOf(a,b,c) can select the same object repeatedly, so that doesn't work. I'm writing a mutable ...
3
votes
1answer
140 views

Make ScalaCheck tests deterministic

I would like to make my ScalaCheck property tests in my specs2 test suite deterministic, temporarily, to ease debugging. Right now, different values could be generated each time I re-run the test ...
0
votes
1answer
130 views

Before/After/Around for ScalaCheck?

specs2 has traits such as Before, After, Around, etc. in order to be able to wrap examples in setup/teardown code. Is there anything to support setting up and tearing down testing infrastructure for ...
1
vote
0answers
101 views

Scalacheck json and case classes

I'm writing a service that takes a case class and serializes it to json, that I will then send to an instance running Elastic Search. I'd like scalacheck to generate several case classes, with random ...
2
votes
1answer
84 views

Generate an arbitrary linear function in ScalaCheck?

I'm trying to generate an arbitrary function of the form f(x) = ax + b, where a and b are arbitrary integers, in ScalaCheck. How do I do this? I tried: def arbitraryFunction[Int] = Arbitrary { ...
1
vote
1answer
62 views

Why is ScalaCheck discarding so many generated values in my specification?

I have written a ScalaCheck test case within Specs2. The test case gives up because too many tests were discarded. However, it doesn't tell me why they were discarded. How can I find out why?
2
votes
1answer
127 views

Scalacheck is ignoring the provided generators

I'm trying to implement a simple property check but Scalacheck is ignoring my generators. What I'm doing wrong here? object AlgorithmTest extends Properties("Algorithm") { property("Test") = forAll ...
1
vote
2answers
113 views

How to fire up Scala interpreter with ScalaCheck in the classpath in Ubuntu 11.10?

Scala is installed and working fine. scalacheck.jar is placed in the /bin . I used the following command $ scala -cp scalacheck.jar After that, when i tried the below command, scala> import ...
16
votes
1answer
487 views

High-Order ScalaCheck

Consider the following definition of a category: trait Category[~>[_, _]] { def id[A]: A ~> A def compose[A, B, C](f: A ~> B)(g: B ~> C): A ~> C } Here's an instance for unary ...
4
votes
1answer
69 views

defining a simple implicit Arbitary

I have a type Foo with a constructor that takes an Int. How do I define an implicit Arbitrary for Foo to be used with scalacheck? implicit def arbFoo: Arbitrary[Foo] = ??? I came up with the ...
0
votes
1answer
62 views

What features does scalacheck add over quickcheck?

All the scalacheck stuff says: has since evolved and been extended with features not found in Haskell QuickCheck So, what are those features?
2
votes
1answer
184 views

Help with ScalaCheck

I'd like to use ScalaTest's Checkers trait to use ScalaCheck from ScalaTest cases. A simple case I'm playing with is: test("can create local date UTC from millis") { ...
4
votes
1answer
188 views

How to get ScalaCheck's Arbitrary to always generate some special case values?

I'd like to have all my properties always be tested with at least a fixed set of special values in addition to some random values. I'd like to define this in my generator specification, not in every ...
5
votes
2answers
1k views

How to use Specs2 with Scalacheck to automate testing of String arguments?

The rewritten specs2 testing framework for Scala integrates automated testing with scalacheck. The examples given in the specs2 documentation on how to use scalacheck together with specs2 either use ...
1
vote
2answers
691 views

generating permutations with scalacheck

I have some generators like this: val fooRepr = oneOf(a, b, c, d, e) val foo = for (s <- choose(1, 5); c <- listOfN(s, fooRepr)) yield c.mkString("$") This leads to duplicates ... I might get ...
2
votes
1answer
186 views

How to get pretty output from specs+scalacheck with maven?

When I run Specs + Scalacheck tests with IDEA, I get nice pretty output: Specification "CoreSpec" The core grammar should + parse any encoded string + fail to parse an empty encoded ...
1
vote
3answers
322 views

Generating arbitrary (legal) Unicode character with scalacheck?

I'm trying to create a generator that produces (non-zero-length) legal unicode strings, with scalacheck 1.6.6 and specs 1.7 (scala 2.8.1). I hoped I could just create generators like: object ...
2
votes
1answer
287 views

Using specs matchers in scalacheck properties

I'm trying to use specs mathers inside scalacheck properties. For example, I have a matcher that works like this: x must matchMyMatcher(y) When I want to use this matcher inside scalacheck ...
2
votes
2answers
449 views

Sized generators in scalacheck

UserGuide of scalacheck project mentioned sized generators. The explanation code def matrix[T](g:Gen[T]):Gen[Seq[Seq[T]]] = Gen.sized {size => val side = scala.Math.sqrt(size).asInstanceOf[Int] ...
1
vote
2answers
201 views

Generators for regular classes in scalacheck

In scalacheck's user guide there is "Generating Case Classes" paragraph. I modified example from it to use regular classes instead of case classes: import org.scalacheck._ import Gen._ import ...
3
votes
2answers
413 views

Error with scala-2.8 and scalacheck: Prop has wrong version

scala Welcome to Scala version 2.8.0.final (Java HotSpot(TM) Client VM, Java 1.6.0_20). Type in expressions to have them evaluated. Type :help for more information. scala> import ...
3
votes
1answer
404 views

Can ScalaCheck/Specs warnings safely be ignored when using SBT with ScalaTest?

I have a simple FunSuite-based ScalaTest: package pdbartlett.hello_sbt import org.scalatest.FunSuite ...