blob: 2ead79fdf9f3058e2769234b70c121a695af1859 [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.application.internal.operations.J2EEComponentCreationDataModel;
import org.eclipse.jst.j2ee.applicationclient.internal.creation.AppClientComponentCreationDataModel;
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";
public static Test suite() {
return new SimpleTestSuite(AppClientProjectCreationOperationTest.class);
}
public J2EEComponentCreationDataModel getComponentCreationDataModel() {
return new AppClientComponentCreationDataModel();
}
}