blob: 198269cb3cadfc8c320d09ffff0bf9981679a76f [file] [log] [blame]
package org.eclipse.jst.j2ee.client.test;
import junit.framework.TestCase;
import org.eclipse.jst.j2ee.client.ApplicationClient;
import org.eclipse.jst.j2ee.client.ClientFactory;
import org.eclipse.jst.j2ee.client.ClientPackage;
public class ClientFactoryTest extends TestCase {
private ClientFactory getInstance() {
return ClientPackage.eINSTANCE.getClientFactory();
}
public void test_ClientFactory() {
ClientFactory tmpClientFactory = getInstance();
}
public void test_createApplicationClient() {
ClientFactory objClientFactory = getInstance();
ApplicationClient retValue = null;
retValue = objClientFactory.createApplicationClient();
assertNotNull(retValue);
}
public void test_getClientPackage() {
ClientFactory objClientFactory = getInstance();
ClientPackage retValue = null;
retValue = objClientFactory.getClientPackage();
assertNotNull(retValue);
}
}