File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 11ThisBuild / 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
You can’t perform that action at this time.
0 commit comments