blob: 5ab541b4e30b29910191bd5f945eaa0e7722b9dc [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.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;
}
}