Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1つではなく複数のテストフォルダーを持つように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")