9

我们想设置我们的SBT项目,以便我们有多个测试文件夹而不是一个。所以我们希望看到:

    • 源代码
      • 测试
        • 斯卡拉
          • 单元
          • 功能性的

我们将如何配置我们的 SBT 项目文件路径来做到这一点?

4

1 回答 1

6

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")
于 2011-06-02T12:44:08.160 回答