在SBT项目中设置多个测试文件夹
我们想建立我们的SBT项目,以便我们有多个测试文件夹而不是一个。 所以我们希望看到:
我们如何配置我们的SBT项目文件路径来做到这一点?
SBT 0.9.x :
(sourceDirectories in Test) := Seq(new File("src/test/scala/unit"),
new File("src/test/scala/functional"))
SBT 0.7.x :
override def testSourceRoots = ("src" / "test") +++
"scala" +++ ("unit" / "functional")
链接地址: http://www.djcxy.com/p/42567.html