blob: b94b27d71c67d3cce1e144e60fe639b59f17cce2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.parser;
import org.eclipse.update.tests.UpdateManagerTestCase;
import junit.framework.*;
public class AllParserTests extends UpdateManagerTestCase {
public AllParserTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("Parsing Tests");
// the following will take all teh test methods in teh class that start with 'test'
suite.addTest(new TestSuite(TestFeatureParse.class));
suite.addTest(new TestSuite(TestSiteParse.class));
suite.addTest(new TestSuite(TestCategories.class));
// or you can specify the method
//suite.addTest(new TestGetFeature("methodThatDoesNotStartWithtest"));
return suite;
}
}