Just because I've seen so many posts on the net saying that you would have to parse out the name of the currently executing method of the stack trace print, throw exceptions or other bad implementations, here's a simple handy method to put in your unit test super class, works from j2sdk 1.4 and up. You probably don't want to use this in a production code if you cannot guarantee your target JVM and its settings because it might omit the stack information.
protected String getCurrentlyExecutingMethodName() {
Throwable t = new Throwable();
StackTraceElement[] elements = t.getStackTrace();
if (elements.length <= 0) return "[No Stack Information Available]";
// elements[0] is this method
if (elements.length < 2) return null;
return elements[1].getMethodName();
}