blob: adfe2582d6e03c362b475e5032cd83204443f61d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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
*******************************************************************************/
package org.eclipse.ui.tests.api;
import junit.framework.TestCase;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.PlatformUI;
/**
* Tests the PlatformUI class.
*/
public class PlatformUITest extends TestCase {
public PlatformUITest(String testName) {
super(testName);
}
public void testGetWorkbench() throws Throwable {
// From Javadoc: "Returns the workbench interface."
IWorkbench wb = PlatformUI.getWorkbench();
assertNotNull(wb);
}
public void testPLUGIN_ID() {
// From Javadoc: "Identifies the workbench plugin."
assertNotNull(PlatformUI.PLUGIN_ID);
}
}