Installation

Cornichon is available for Scala 2.13 & Scala 3.

The library is compatible with SBT and Mill.

// SBT
libraryDependencies += "com.github.agourlay" %% "cornichon-test-framework" % "0.23.0" % 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.23.0")
  def testFrameworks = Seq("com.github.agourlay.cornichon.framework.CornichonFramework")
}