Setting up multiple test folders in a SBT project
We'd like to set up our SBT project so that we have multiple test folders as opposed to one. So we'd like to see:
How would we configure our SBT project file paths to do this?
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/42568.html
上一篇: SBT任务将项目文件夹中的属性文件复制到webapp
下一篇: 在SBT项目中设置多个测试文件夹