ClassTypeBuilder classTypeBuilder = new ClassTypeBuilder(className + Consts.TEST_SUFFIX);
//process methods
List<MethodDeclaration> methodDeclarations = MembersFilter.findMethodsFrom(typeDeclaration);
for (MethodDeclaration methodDeclaration : methodDeclarations) {
//has method and add import
compilationUnitBuilder.buildImports(null);
String methodName = methodDeclaration.getName();
getLog().info("methodName:" + methodDeclaration.getName());
classTypeBuilder.buildMethod(methodName + Consts.TEST_SUFFIX, methodDeclaration);
}