2016-07-28 90 views
2

我试图执行JUnit测试SBT无法执行JUnit测试

SBT测试

SBT干净的测试

测试失败,错误:

[info] Updating {file:/D:/sbt_projects/hello-word-ec/}hello-word-ec... 
[info] Resolving org.fusesource.jansi#jansi;1.4 ... 
[info] Done updating. 
[info] Compiling 2 Scala sources to D:\sbt_projects\hello-word-ec\target\scala-2.10\test-classes... 
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test1.scala:1: object junit is not a member of package org 
[error] import org.junit.Test 
[error]   ^
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test1.scala:3: not found: type Test 
[error] @Test 
[error] ^
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test2.scala:1: object junit is not a member of package org 
[error] import org.junit.Test 
[error]   ^
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test2.scala:2: object junit is not a member of package org 
[error] import org.junit.BeforeClass 
[error]   ^
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test2.scala:6: not found: type BeforeClass 
[error] @BeforeClass 
[error] ^
[error] D:\sbt_projects\hello-word-ec\src\test\scala\Test2.scala:12: not found: type Test 
[error] @Test 
[error] ^
[error] 6 errors found 
[error] (test:compileIncremental) Compilation failed 
[error] Total time: 1 s, completed Jul 28, 2016 6:10:04 PM 

我的build.sbt文件内容

name := "sbt junit test project" 
version := "1.0" 
scalaVersion := "2.10.5" 
libraryDependencies += "com.novocode" % "junit-interface" % "0.8" % "test->default" 
libraryDependencies += "junit" % "junit" % "4.12" % Test 
EclipseKeys.withSource := true 

文件%USERDIR%名.bst \ 0.13 \插件\ build.sbt看起来像

resolvers += Classpaths.typesafeResolver 
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0") 

回答

1

根项目文件夹认沽build.sbt否则sbt clean无法看到build.sbt和下载的依赖。最初build.sbt位于<project root>\project\文件夹中