blob: 0fd7406097af7146caa97fc8faef445a150e3f39 [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 Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.dom;
import java.lang.reflect.*;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class RunConverterTests extends TestCase {
public RunConverterTests(String name) {
super(name);
}
public static Class[] getAllTestClasses() {
return new Class[] {
org.eclipse.jdt.core.tests.dom.ASTConverterTest.class,
org.eclipse.jdt.core.tests.dom.ASTConverterTest2.class
};
}
public static Test suite() {
TestSuite ts = new TestSuite(RunConverterTests.class.getName());
Class[] testClasses = getAllTestClasses();
for (int i = 0; i < testClasses.length; i++) {
Class testClass = testClasses[i];
// call the suite() method and add the resulting suite to the suite
try {
Method suiteMethod = testClass.getDeclaredMethod("suite", new Class[0]); //$NON-NLS-1$
Test suite = (Test)suiteMethod.invoke(null, new Object[0]);
ts.addTest(suite);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.getTargetException().printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
return ts;
}
}