blob: 1d118b2c142a59de671e85efb766a05b5689a209 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
**********************************************************************/
package org.eclipse.jst.server.tomcat.ui.tests;
import org.eclipse.jst.server.tomcat.core.tests.Tomcat50ServerTestCase;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.ui.tests.AbstractOpenEditorTestCase;
public class OpenEditorTestCase extends AbstractOpenEditorTestCase {
public IServer getServer() throws Exception {
return new Tomcat50ServerTestCase().createServer();
}
public void releaseServer(IServer server) throws Exception {
server.delete();
}
}