is not current version
Last Version 1.5

org.scalacheck:scalacheck 1.4

ScalaCheck is a tool for testing Scala programs, based on property specifications and automatic test data generation. The basic idea is that you define a property that specifies the behaviour of a method or some unit of code, and ScalaCheck checks that the property holds. All test data are generated automatically in a random fashion, so you don't have to worry about any missed cases.

Categories

Categories

Scala Languages
GroupId

GroupId

org.scalacheck
ArtifactId

ArtifactId

scalacheck
Version

Version

1.4
Type

Type

jar

Download scalacheck 1.4


<!-- https://jarcasting.com/artifacts/org.scalacheck/scalacheck/ -->
<dependency>
    <groupId>org.scalacheck</groupId>
    <artifactId>scalacheck</artifactId>
    <version>1.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.scalacheck/scalacheck/
implementation 'org.scalacheck:scalacheck:1.4'
// https://jarcasting.com/artifacts/org.scalacheck/scalacheck/
implementation ("org.scalacheck:scalacheck:1.4")
'org.scalacheck:scalacheck:jar:1.4'
<dependency org="org.scalacheck" name="scalacheck" rev="1.4">
  <artifact name="scalacheck" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.scalacheck', module='scalacheck', version='1.4')
)
libraryDependencies += "org.scalacheck" % "scalacheck" % "1.4"
[org.scalacheck/scalacheck "1.4"]