我有一个扩展RunListener的类。
我想知道该方法的结果。 所以在这个方法中:
public void testFinished(Description description) throws java.lang.Exception {
System.out.println("Finished execution of test case : " + description.getMethodName());
}
我想要像:description.getResult(),但它不存在。 我该怎么做?
感谢。
答案 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;
}