我想获取当前正在执行的测试方法,@Before
以便我可以将注释应用于当前正在执行的方法。
public class TestCaseExample {
@Before
public void setUp() {
// get current method here.
}
@Test
@MyAnnotation("id")
public void someTest {
// code
}
}