取得當前類名、方法名
public class AbcTest{ @Test public void testMethod() throws Exception { //AbcTest.testMethod System.out.println(this.getClass().getSimpleName()+"."+Thread.currentThread().getStackTrace()[1].getMethodName()); } }
文章標籤
全站熱搜
取得當前類名、方法名
public class AbcTest{ @Test public void testMethod() throws Exception { //AbcTest.testMethod System.out.println(this.getClass().getSimpleName()+"."+Thread.currentThread().getStackTrace()[1].getMethodName()); } }
留言列表