0.2.0
0.2.0 is cross published to Scala 2.11, 2.12, 2.13, Dotty, Scala.js 0.6.x and Scala Native 0.3.x.
String diffing
Verify 0.2.0 adds assertEquals(expected: String, found: String,[message: => String])
that implements String diffing.
assertEquals(str1, "Don't " + str2, "custom message")
The above test fails as follows:
logging
The log now outputs to sbt log - #29
If you want non-buffered log the following might be useful:
Test / logBuffered := false
Test / parallelExecution := false
about scala-verify
scala-verify is a fork of Minitest + SourceCode to prepare for eventual merge into scala/scala.
The purpose of scala-verify is to create a cross-platform, zero-dependency, minimal, testing framework for bootstrapping the toolchain and a few foundational third-party libraries.
See scala/scala-dev#641.