我在運行SBT的scalatest
時遇到問題。將庫添加到SBT測試文件
> test
[info] Compiling 2 Scala sources to C:\side-work\MonadsSbt\target\scala-2.10
\test-classes...
[error] C:\side-work\MonadsSbt\src\test\scala\tests\TestMonadLaws.scala:4:
object scalatest is not a member of package org
[error] import org.scalatest._
這裏是我的project/build.sbt
部分:
libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
resolvers += "Sonatype OSS Snapshots" at
"https://oss.sonatype.org/content/repositories/snapshots"
你碰巧在'TestMonadLaws'的範圍內有一個'org'對象嗎?如果您導入「_root_.org.scalatest._」,會發生什麼情況? –
在我的'TestMonadLaws'範圍內沒有對象'org'。我嘗試了你的導入,然後運行'sbt test',但得到'對象scalatest不是程序包組織成員'。 –