blob: fb83ae1e091eb0c4d3beaa5b1b78cd67d239a5fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.wsi.tests.internal;
import org.eclipse.core.runtime.Platform;
import org.junit.Assert;
import junit.framework.TestCase;
public class ExistenceTest extends TestCase {
public void testPluginExistence() {
// Static plugin id is not public in org.eclipse.wst.wsi
Assert.assertNotNull(Platform.getBundle("org.eclipse.wst.wsi"));
}
}