Installation

Cornichon is available for Scala 2.12 & Scala 2.13.

It requires Java 11 or higher.

The library is compatible with SBT and Mill.

// SBT
libraryDependencies += "com.github.agourlay" %% "cornichon-test-framework" % "0.21.1" % Test
testFrameworks += new TestFramework("com.github.agourlay.cornichon.framework.CornichonFramework")
// Mill
object test extends Tests {
  def ivyDeps = Agg(ivy"com.github.agourlay::cornichon-test-framework:0.21.1")
  def testFrameworks = Seq("com.github.agourlay.cornichon.framework.CornichonFramework")
}