这是我的SBT版本:
val main = play.Project(appName, appVersion, appDependencies).settings(defaultScalaSettings:_*)
.settings(
scalaVersion := "2.10.0",
resolvers += .....
)
.configs(IntegrationTest)
.settings( Defaults.itSettings : _*)
.settings(
testOptions in Test += Tests.Setup( () => println("Setup Test yoohooo") ),
testOptions in Test += Tests.Cleanup( () => println("Cleanup Test yoohoo") ),
scalaSource in Test <<= baseDirectory / "test/unit",
parallelExecution in Test := true,
testOptions in IntegrationTest += Tests.Setup( () => println("Setup Integration Test yoohoo") ),
testOptions in IntegrationTest += Tests.Cleanup( () => println("Cleanup Integration Test yoohoo") ),
scalaSource in IntegrationTest <<= baseDirectory / "test/integration",
parallelExecution in IntegrationTest := false
)
我可以启动test
和it:test
两个任务,但它只会打印IntegrationTest的文本,而不会打印常规测试。
我看到Play2有一些默认设置:
testOptions in Test += Tests.Setup { loader =>
loader.loadClass("play.api.Logger").getMethod("init", classOf[java.io.File]).invoke(null, new java.io.File("."))
},
testOptions in Test += Tests.Cleanup { loader =>
loader.loadClass("play.api.Logger").getMethod("shutdown").invoke(null)
},
我的构建不应该覆盖这些设置吗?
顺便说一句,我可以在此安装程序中调用外部库或测试源类吗?
答案 0 :(得分:2)
也许这是sbt的约束。
官方文件说
分叉组时不支持设置和清除操作。
https://github.com/sbt/sbt/blob/v0.12.2/src/sphinx/Detailed-Topics/Testing.rst#forking-tests
http://www.scala-sbt.org/0.12.2/docs/Detailed-Topics/Testing.html
fork in Test := true
默认来自Play2.1.0
https://github.com/playframework/Play20/pull/654/files#L5L110
答案 1 :(得分:0)
使用Test.Cleanup
它也不起作用,但在提供的another answer are workarounds中。