RunListener结果方法

时间:2013-11-22 09:29:51

标签: java junit

我有一个扩展RunListener的类。

我想知道该方法的结果。 所以在这个方法中:

public void testFinished(Description description) throws java.lang.Exception {
    System.out.println("Finished execution of test case : " + description.getMethodName());
}

我想要像:description.getResult(),但它不存在。 我该怎么做?

感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用哪种方法取决于Description对象。如果您需要/ getResult(),则必须在Description课程中实施该方法并将其公开。

示例:

这是您需要在Description课程中实施的方法示例。

public Object getResult() {
  // this is the method you need to implement, with whatever return type you need instead of Object (String etc.)
  return result;
}