IProblemFactory problemFactory = new DefaultProblemFactory(
Locale.getDefault());
// Save off the bounds of any method that is a test method
ISourceElementRequestor requestor = new SourceElementRequestorAdapter() {
public void enterMethod(MethodInfo methodInfo) {
String name = new String(methodInfo.name);
if (name.startsWith("test")) {
currentMethod = new MethodBody();
currentMethod.declarationStart = methodInfo.declarationStart;