blob: cb5bfb345a1c2e429d2ae76e74724ab0a18f19b7 [file] [log] [blame]
/*
* Created on Nov 6, 2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.eclipse.wtp.j2ee.headless.tests.appclient.operations;
import junit.framework.Test;
import org.eclipse.jst.j2ee.applicationclient.internal.creation.AppClientFacetProjectCreationDataModelProvider;
import org.eclipse.wst.common.frameworks.datamodel.DataModelFactory;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wst.common.tests.SimpleTestSuite;
import org.eclipse.wtp.j2ee.headless.tests.j2ee.operations.ModuleProjectCreationOperationTest;
/**
* @author jsholl
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class AppClientProjectCreationOperationTest extends ModuleProjectCreationOperationTest {
public static String DEFAULT_PROJECT_NAME = "SimpleAppClient";
/**
* @param name
*/
public AppClientProjectCreationOperationTest(String name) {
super(name);
// TODO Auto-generated constructor stub
}
public static Test suite() {
return new SimpleTestSuite(AppClientProjectCreationOperationTest.class);
}
public IDataModel getComponentCreationDataModel() {
return DataModelFactory.createDataModel(new AppClientFacetProjectCreationDataModelProvider());
}
}