blob: b4d47f4323df3116987121a6098b1c8c30fe7d53 [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.operations.J2EEModuleCreationDataModel;
import org.eclipse.jst.j2ee.applicationclient.creation.AppClientModuleCreationDataModel;
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 J2EEModuleCreationDataModel getProjectCreationDataModel() {
return new AppClientModuleCreationDataModel();
}
}