blob: d7c7dd4738542c4c0562883d6805431a2c4b339f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.python.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("org.eclipse.dltk.python.tests.model");
//$JUnit-BEGIN$
suite.addTest(org.eclipse.dltk.python.tests.eval.generated.AllTests.suite());
suite.addTest(org.eclipse.dltk.python.tests.buildpath.BuildpathTests.suite());
suite.addTest(org.eclipse.dltk.python.tests.model.AllPythonModelTests.suite());
//$JUnit-END$
return suite;
}
}