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