如何导入规格库?我收到以下错误:
scala> import org.specs._
<console>:11: error: object specs is not a member of packa
ge org
import org.specs._
^
我认为它与classpath有关,但我不知道如何修复它因为我是scala的新手。
事实上,我实际上是在尝试在sbt中运行测试,所以如果你能告诉我如何在sbt中导入规范会很有帮助。
答案 0 :(得分:0)
您的build.sbt应包含
libraryDependencies ++= {
Seq(
"org.specs2" %% "specs2" % "2.3.12" % "test"
)
}
和你的test.scala
import org.specs2.mutable.Specification
class PlayerTest extends Specification {
// test code here
}
答案 1 :(得分:0)
只需在build.sbt中添加依赖项并再次编译,然后就可以导入spec2。