Scala - 对象junit不是包org的成员

时间:2015-11-08 12:25:29

标签: eclipse scala junit

我正在从Coursera学习Scala课程。

我有一个包含以下行的测试文件:

import org.junit.runner.RunWith

在这里,我收到以下错误:

Multiple markers at this line:
- object junit is not a member of package org
- object junit is not a member of package org

我的问题与此类似: object scalatest is not a member of package org

我通过添加到build.sbt

来回答问题
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")

但是,当我在项目的根文件夹中的scala控制台中运行eclipse时,我得到:

<console>:11: error: not found: value eclipse
       eclipse

1 个答案:

答案 0 :(得分:2)

而不是build.sbt,您需要将上面的行添加到项目文件夹中的plugins.sbt文件中。如果它不存在,你应该创建它。