blob: d19a88101a48dd7471d0b6828b0c4169fd28e55b [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.wst.server.core.tests.extension;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.wst.server.core.IServerConfigurationType;
import org.eclipse.wst.server.core.ServerCore;
public class ServerConfigurationTypesTestCase extends TestCase {
public static Test suite() {
return new TestSuite(ServerConfigurationTypesTestCase.class, "ServerConfigurationTypesTestCase");
}
public void testServerConfigurationTypesExtension() throws Exception {
IServerConfigurationType[] serverConfigTypes = ServerCore.getServerConfigurationTypes();
if (serverConfigTypes != null) {
int size = serverConfigTypes.length;
for (int i = 0; i < size; i++)
System.out.println(serverConfigTypes[i].getId() + " - " + serverConfigTypes[i].getName());
}
}
}