blob: 36777cda567b08a972f8bd1f59be5306a0d208f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004, 2005 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.common.frameworks.datamodel.tests;
import junit.framework.TestCase;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.frameworks.internal.enablement.DataModelEnablementFactory;
public class DataModelEnablementTest extends TestCase {
public void testValidExtensionIDAndProviderType() throws Exception {
IProject proj = ResourcesPlugin.getWorkspace().getRoot().getProject("temp");
if (proj == null) {
proj.create(null);
}
IDataModel dataModel = DataModelEnablementFactory.createDataModel("testProviderBase", proj);
assertTrue(dataModel.isProperty(ITestDataModel.FOO));
}
public void testValidExtensionIDImplementorForProviderType() throws Exception{
IProject proj = ResourcesPlugin.getWorkspace().getRoot().getProject("temp");
if (proj == null) {
proj.create(null);
}
IDataModel dataModel = DataModelEnablementFactory.createDataModel("testProviderBogus", proj);
assertTrue(dataModel == null);
}
}