Reputation: 8621
Is there anyway to integrate ScalaCheck and the testing infrastructure IntelliJ provides?
Upvotes: 2
Views: 1776
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