@Before
現在実行中のメソッドにアノテーションを適用できるように、現在実行中のテストメソッドを取得したいと考えています。
public class TestCaseExample {
@Before
public void setUp() {
// get current method here.
}
@Test
@MyAnnotation("id")
public void someTest {
// code
}
}