blob: 17682ea6982c1240834a88cb1e60409b41fdd2e8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.equinox.p2.tests.reconciler.dropins;
import java.util.Enumeration;
import java.util.Vector;
import junit.framework.Test;
import junit.framework.TestSuite;
public class ReconcilerTestSuite extends TestSuite {
private Test INITIALIZE = new AbstractReconcilerTest("initialize");
private Test CLEANUP = new AbstractReconcilerTest("cleanup");
/* (non-Javadoc)
* @see junit.framework.TestSuite#tests()
*/
public Enumeration tests() {
Vector result = new Vector();
result.add(INITIALIZE);
for (Enumeration e = super.tests(); e.hasMoreElements();)
result.add(e.nextElement());
result.add(CLEANUP);
return result.elements();
}
/* (non-Javadoc)
* @see junit.framework.TestSuite#testCount()
*/
public int testCount() {
return super.testCount() + 2;
}
/* (non-Javadoc)
* @see junit.framework.TestSuite#testAt(int)
*/
public Test testAt(int index) {
if (index == 0)
return INITIALIZE;
if (index == testCount() - 1)
return CLEANUP;
return super.testAt(index - 1);
}
}