I have these test dependencies defined
/ Test Dependencies
lazy val wiremock = "com.github.tomakehurst" % "wiremock-jre8" % "2.25.1"
lazy val playTest = "com.typesafe.play" %% "play-test" % "2.8.1"
lazy val scalaTestPlusPlay = "org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0"
lazy val mockito = "org.mockito" %% "mockito-scala" % "1.10.2"
lazy val scalamock = "org.scalamock" %% "scalamock" % "4.4.0"
lazy val scalacheck_shapeless = "com.github.alexarchambault" %% "scalacheck-shapeless_1.14" % "1.2.3"
lazy val scalatest = "org.scalatest" %% "scalatest" % "3.1.1"
But I cannot find this trait to mix into my test spec class: GeneratorDrivenPropertyChecks. I am not sure what I am missing here in terms of dependencies. Under org.scalatest.prop
I don't see this trait. I only see TableDrivenPropertyChecks.