Hugo Sereno Ferreira
Hugo Sereno Ferreira

Reputation: 8621

How to integrate ScalaCheck and IntelliJ (10.5 or 11)

Is there anyway to integrate ScalaCheck and the testing infrastructure IntelliJ provides?

Upvotes: 2

Views: 1776

Answers (2)

Prometheus
Prometheus

Reputation: 563

One easy way to integrate scala-check and the testing infrastructure provided by IntelliJ is by wrapping it with scala-test.

This will require the following scala-test dependency:

org.scalatestplus:scalacheck

More information can be found here and a working sample can be found here

Upvotes: 0

Eric
Eric

Reputation: 15557

Not directly. The best way to do that is to use specs2, or ScalaTest.

Upvotes: 1

Related Questions