blob: 2079723eb0054a990f864f2471dc08095b94ce8d [file] [log] [blame]
Stephan Herrmannbe6c0ea2010-04-01 21:59:30 +00001/*******************************************************************************
2 * Copyright (c) 2005 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11package org.eclipse.jdt.core.tests;
12
13import junit.framework.Test;
14import junit.framework.TestCase;
15import junit.framework.TestSuite;
16
17import org.eclipse.jdt.core.tests.dom.RunAllTests;
18
19/**
20 * Runs all DOM AST tests.
21 */
22public class RunDOMTests extends TestCase {
23
24public RunDOMTests(String name) {
25 super(name);
26}
27public static Test suite() {
28 TestSuite suite = new TestSuite(RunDOMTests.class.getName());
29 suite.addTest(RunAllTests.suite());
30 return suite;
31}
32}