これはPlay FrameworkとScalaを使用した私の最初のWebアプリケーションです。私はこのチュートリアル>https://semaphoreci.com/community/tutorials/how-to-add-integration-tests-to-a-play-framework-application-using-scalaに従っていて、アプリがうまく機能した後、私のテストはうまくいかない。私はsbtテストを入力すると、コンパイラはPlaySpecificationを見つけることができないと言っています。Play + Scalaスイートテストが見つからないタイプPlaySpecification
[error] /home/felipe/Documentos/AMC/amc-project/play-scala-library/test/controllers/HomeControllerIntegrationSpec.scala:6: not found: type PlaySpecification
[error] class HomeControllerIntegrationSpec extends PlaySpecification {
これらは、利用可能な劇中のテストのための2つのフレームワーク、specs2とscalatestがあり
libraryDependencies ++= Seq(
jdbc,
cache,
ws,
evolutions,
"com.typesafe.play" %% "anorm" % "2.4.0",
"commons-codec" % "commons-codec" % "1.6",
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
ありがとう、それはまさにそれでした。驚くばかり! –