====== Testing Private Methods ====== It can be done using the Refletion API: Method myMethod = MyClass.class.getDeclaredMethod("myMethod", ...); myMethod.setAccessible(true); myMethod.invoke(...); For more information, see this [[http://erik.thauvin.net/blog/news.jsp?date=2006-01-29#418|tip]] I wrote