Add: hedgehog to supported default testFrameworks

This commit is contained in:
Kevin Lee
2023-06-05 20:14:40 +10:00
parent ca09ee96fd
commit b01f583451
5 changed files with 46 additions and 1 deletions
@@ -29,9 +29,10 @@ object TestFrameworks {
val MUnit = TestFramework("munit.Framework")
val ZIOTest = TestFramework("zio.test.sbt.ZTestFramework")
val WeaverTestCats = TestFramework("weaver.framework.CatsEffect")
val Hedgehog = TestFramework("hedgehog.sbt.Framework")
val All: Seq[TestFramework] =
Seq(ScalaCheck, Specs2, Specs, ScalaTest, JUnit, MUnit, ZIOTest, WeaverTestCats)
Seq(ScalaCheck, Specs2, Specs, ScalaTest, JUnit, MUnit, ZIOTest, WeaverTestCats, Hedgehog)
}
final class TestFramework(val implClassNames: String*) extends Serializable {