File f = null;
File testFolderFile = project.getProject().getParent().getRawLocation().append(getPackageFragmentRoot().getPath().makeRelative()).toFile();
f = getBasePackage(testFolderFile);
if (f != null && testRoot != null) {
IPath p = new Path(f.getPath());
p = p.makeRelativeTo(project.getProject().getParent().getRawLocation().append(getPackageFragmentRoot().getPath().makeRelative()));
String name = "";
StringTokenizer strTok = new StringTokenizer(p.toOSString(), File.separator);
while (strTok.hasMoreTokens()) {
String tok = strTok.nextToken();
if (name.trim().length()>0) {