blob: 72630619f3d42a650943f71bab7c4c8a5c65615b [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.IRuntimeLocator;
import org.eclipse.wst.server.core.ServerCore;
public class RuntimeLocatorsTestCase extends TestCase {
public static Test suite() {
return new TestSuite(RuntimeLocatorsTestCase.class, "RuntimeLocatorsTestCase");
}
public void testRuntimeLocatorsExtension() throws Exception {
IRuntimeLocator[] runtimeLocators = ServerCore.getRuntimeLocators();
if (runtimeLocators != null) {
int size = runtimeLocators.length;
for (int i = 0; i < size; i++)
System.out.println(runtimeLocators[i].getId() + " - " + runtimeLocators[i].getName());
}
}
}