blob: 0bd8ff63d8ffb30ef67df93310b808bd543df7f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.wst.server.ui.tests.editor;
import junit.framework.TestCase;
import org.eclipse.wst.server.ui.internal.provisional.ServerEditorActionFactoryDelegate;
import org.eclipse.wst.server.ui.tests.impl.TestServerEditorActionFactoryDelegate;
public class ServerEditorActionFactoryDelegateTestCase extends TestCase {
protected static ServerEditorActionFactoryDelegate delegate;
public void test00CreateDelegate() throws Exception {
delegate = new TestServerEditorActionFactoryDelegate();
}
public void test01ShouldDisplay() throws Exception {
delegate.shouldDisplay(null);
}
public void test02CreateAction() throws Exception {
delegate.createAction(null, null);
}
}