Skip to content

Commit 5d2e5ec

Browse files
committed
Include usual test dependencies
1 parent 86d1d9b commit 5d2e5ec

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

dependencies.sbt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
11
ThisBuild / scalaVersion := "2.13.14"
2+
3+
/**
4+
* ScalaTest is the most flexible and most popular testing tool in the Scala ecosystem.
5+
* @see [[https://www.scalatest.org/]]
6+
*/
7+
libraryDependencies +=
8+
"org.scalatest" %% "scalatest" % "3.2.18" % Test
9+
10+
/**
11+
* Readable deltas for Scala case classes.
12+
* @see [[https://github.com/softwaremill/diffx]]
13+
*/
14+
libraryDependencies ++=
15+
"com.softwaremill.diffx" %% "diffx-scalatest-must" % "0.9.0" % Test ::
16+
"com.softwaremill.diffx" %% "diffx-scalatest-should" % "0.9.0" % Test ::
17+
Nil
18+
19+
/**
20+
* Property-based testing for Scala, with support for ScalaTest.
21+
* Also includes support for automatic derivation of ScalaCheck instances.
22+
*
23+
* @see [[https://scalacheck.org]]
24+
* @see [[https://scalatest.org/plus/scalacheck]]
25+
* @see [[https://github.com/spotify/magnolify]]
26+
*/
27+
libraryDependencies ++=
28+
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test ::
29+
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test ::
30+
"com.spotify" %% "magnolify-scalacheck" % "0.7.2" % Test ::
31+
Nil

0 commit comments

Comments
 (0)