blob: 5c090a2e14316b21842112c8c0e9c6876db70b98 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.tests.core.boot;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllPlatformConfigurationTests
extends PlatformConfigurationTestCase {
/**
* Constructor
*/
public AllPlatformConfigurationTests(String name) {
super(name);
}
/**
* List of API tests
*/
public static Test suite() throws Exception {
TestSuite suite = new TestSuite();
suite.setName("PlatformConfiguration Tests");
suite.addTest(new TestSuite(TestPlatCfgAPI.class));
return suite;
}
}