Installation
Cornichon is available for Scala 2.12 & Scala 2.13.
The library is compatible with SBT and Mill.
// SBT
libraryDependencies += "com.github.agourlay" %% "cornichon-test-framework" % "0.21.4" % 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.4")
def testFrameworks = Seq("com.github.agourlay.cornichon.framework.CornichonFramework")
}