blob: 08b007d7247c96f56d6ea184e70c586bf9e13085 [file] [log] [blame]
/*
* Created on Mar 25, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.jst.j2ee.core.tests.bvt;
import java.io.IOException;
import java.net.URL;
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.core.runtime.Platform;
/**
* @author jsholl
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public class AutomatedBVTEclipse extends AutomatedBVT {
public AutomatedBVTEclipse(){
super();
IPluginDescriptor pluginDescriptor = Platform.getPluginRegistry().getPluginDescriptor("org.eclipse.jst.j2ee.core.tests");
URL url = pluginDescriptor.getInstallURL();
try {
AutomatedBVT.baseDirectory = Platform.asLocalURL(url).getFile() + "commonArchiveResources"+ java.io.File.separatorChar;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}