blob: d19cad981ba93c38471feb8ffc6f18fe51eb396b [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004, 2008 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();
}
}