我正在使用sbt版本0.13.2和一个纯java项目。
我的build.sbt
中包含以下内容:
libraryDependencies ++= Seq("com.novocode" % "junit-interface" % "0.10" % "test")
我的测试看起来像这样:
import org.junit.Test;
import org.junit.Before;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.junit.Assert.*;
@RunWith(JUnit4.class)
public class ExampleTest{
@Test
public void firstTest(){
org.junit.Assert.assertEquals("2.5 + 7.5 = 10.0", 2.5 + 7.5, 10.0, .1);
}
}
当我从命令行执行sbt test
时,测试已成功编译,但测试未运行。它说
Compiling 1 Java source to [my path]/target/scala-2.10/test-classes...
...
[info] Passed: Total 0, Failed 0, Errors 0, Passed 0
[success] Total time: 1 s, completed May 31, 2014 5:56:22 PM
知道如何执行测试吗?
答案 0 :(得分:0)
当我删除@RunWith
注释时,我的测试运行得很好。我不知道为什么会解决这个问题。
答案 1 :(得分:0)
要尝试的另一件事是从命令行运行测试而不是交互式。出于某种原因,我发现为我工作。
>sbt ProjectName/test
而不是交互式:
>sbt
>project ProjectName
>test