org.junit.runners.ParentRunner#getDescription()源码实例Demo

下面列出了org.junit.runners.ParentRunner#getDescription() 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: justtestlah   文件: JustTestLahRunner.java
@Override
protected Description describeChild(ParentRunner<?> child) {
  return child.getDescription();
}
 
源代码2 项目: senbot   文件: ParameterizedCucumber.java
@Override
protected Description describeChild(ParentRunner child) {
	return child.getDescription();
}