blob: 67246dcacb9cab1ce24a3e6625aa6f05e9e526cb [file] [log] [blame]
package org.eclipse.wst.sse.ui.tests;
import junit.framework.TestCase;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.wst.sse.ui.EditorPlugin;
/*****************************************************************************
* Copyright (c) 2004 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
*
****************************************************************************/
public class VerifyEditorPlugin extends TestCase {
public void testPluginExists() {
Plugin plugin = null;
try {
plugin = EditorPlugin.getDefault();
} catch (Exception e) {
plugin = null;
}
assertNotNull("sse editor plugin could not be instantiated", plugin);
}
}