Scala test error: value / is not a member of sbt.Configuration

Scala test error: value / is not a member of sbt.Configuration

我正在从 Java 过渡到 scala,并且正在按照 https://medium.com/@geovannyjs/functional-tests-with-scala-sbt-play-framework-specs2-and-one-application-per-test-suite-22ddf70e5cbe to 编写我的初始功能测试。

除了本文档末尾描述的 不是 调用 setup() 和 cleanup() 的部分外,我的测试进行得很顺利。因此,在文档之后,添加了:

Test / fork := false
Test / testOptions += Tests.Setup(_.loadClass("common.Resources").getMethod("setup").invoke(null))
Test / testOptions += Tests.Cleanup(_.loadClass("common.Resources").getMethod("cleanup").invoke(null))

在我的 build.sbt 中。之后我开始收到 编译错误:

error: value / is not a member of sbt.Configuration

Test / fork := false

我可以深入了解我做错了什么吗?

这是我正在使用的库:

lazy val thirdPartyDependencies = Seq(
jdbc,
"com.typesafe.play" %% "anorm" % "2.4.0",
"com.typesafe.play" %% "play-mailer" % "3.0.1",
"com.microsoft.sqlserver" % "mssql-jdbc" % "6.4.0.jre8",
"io.swagger" %% "swagger-play2" % "1.5.0",  // This version adds Play 2.4 support.
// ScalaTest+ Play (have to use non-release 1.4.0-M4 version for now as it is only compatible with Play 2.4)
"org.scalatestplus" %% "play" % "1.4.0-M4" % "test",
"org.mockito" % "mockito-core" % "1.10.19" % "test",
specs2 % Test
)

您可能正在使用不支持此语法的旧版本 SBT。

project/build.properties 中的 sbt.version 设置为某个 1.1+ 版本或使用旧语法:

fork in Test := false