1

我目前正在尝试在日志文件中写入来自 JUnite Suite 的失败测试总数。

我的测试套件定义如下:

@RunWith(Suite.class)
@SuiteClasses({Class1.class, Class2.class etc.})
public class SimpleTestSuite {}

我试图定义一个规则,当测试失败时会增加错误总数,但显然我的规则从未被调用。

@Rule
public MethodRule logWatchRule = new TestWatchman() {
    public void failed(Throwable e, FrameworkMethod method) {
         errors += 1;
    }

    public void succeeded(FrameworkMethod method) {
    }
};

关于我应该做些什么来实现这种行为的任何想法?

4

1 回答 1

1

以下代码适用于我。我怀疑你没有声明errors为静态的。

考虑到 JUnit 在执行每个测试方法之前创建了一个新的fixture 实例

public class WatchmanExample {

 private static int failedCount = 0;

 @Rule
 public MethodRule watchman = new TestWatchman() {
  @Override
  public void failed(Throwable e, FrameworkMethod method) {
   failedCount++; 
  }
 };

 @Test
 public void test1() {
  fail();
 }

 @Test
 public void test2() {
  fail();
 }

}
于 2010-06-09T14:14:02.723 回答