I wonder if it's possible to grab the java method name in runtime? I've tried this code already:
String name = new Object(){}.getClass().getEnclosingMethod().getName();
But it returns the last java method I ran, and I need to get the @Test someTest() {} method name