本文介绍了在JUnit 4中的@Before中获取当前正在执行的@Test方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在 @Before
中获取当前正在执行的测试方法,以便我可以在当前正在执行的方法上应用注释。
I want to get currently executing test method in @Before
so that I can get the annotation applied on currently executing method.
public class TestCaseExample {
@Before
public void setUp() {
// get current method here.
}
@Test
@MyAnnotation("id")
public void someTest {
// code
}
}
推荐答案
尝试TestName规则
try TestName rule
public class TestCaseExample {
@Rule
public TestName testName = new TestName();
@Before
public void setUp() {
Method m = TestCaseExample.class.getMethod(testName.getMethodName());
...
}
...
这篇关于在JUnit 4中的@Before中获取当前正在执行的@Test方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!