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