blob: a62ec4c30be8f459e3b519ced8a5b31c7aa80214 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.tests.proxy;
/*
* $RCSfile: ProxySuite.java,v $
* $Revision: 1.9 $ $Date: 2005/08/24 20:58:54 $
*/
import junit.framework.TestSuite;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jem.internal.proxy.core.*;
import org.eclipse.jem.tests.JavaTestsPlugin;
/**
* @author richkulp
*
* This suite is for testing straight Proxy independent of the type of proxy (e.g. Remote or IDE).
* It can't run by itself. It needs to have the registry creater object stored in it so that
* the appropriate registry can be created and recreated as necessary by the test.
*
* If the tests inherit from AbstractTestProxy the setRegistryHandler will be called on it.
*/
public class ProxySuite extends TestSuite {
// Test cases to be include in the suite
private static Class testsList[] = {
TestStandard.class,
TestAWTProxy.class,
ExpressionTest.class,
} ;
public static String pkgName = "org.eclipse.jem.tests.proxy" ;
/**
* Constructor for PackageSuite.
*/
public ProxySuite() {
super();
populateSuite();
}
/**
* Constructor for PackageSuite.
* @param theClass
*/
public ProxySuite(Class theClass) {
super(theClass);
populateSuite();
}
/**
* Constructor for PackageSuite.
* @param name
*/
public ProxySuite(String name) {
super(name);
populateSuite() ;
}
private void populateSuite () {
for (int i=0; i<testsList.length; i++)
addTestSuite(testsList[i]) ;
}
/**
* Return a contributor to be used when starting tests so that ProxySuite can contribute to it.
* @return A contributor for Proxy Suite tests
*/
public static IConfigurationContributor getProxySuiteContributor() {
return new ConfigurationContributorAdapter() {
public void contributeClasspaths(IConfigurationContributionController controller) throws CoreException {
controller.contributeClasspath(JavaTestsPlugin.getPlugin().getBundle(), "vm/tests.jar", IConfigurationContributionController.APPEND_USER_CLASSPATH, false);
}
};
}
}