blob: d9f35621120ba702f4c64f880fe6005981874b2f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2003 GEBIT Gesellschaft fuer EDV-Beratung
* und Informatik-Technologien mbH,
* Berlin, Duesseldorf, Frankfurt (Germany) 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:
* GEBIT Gesellschaft fuer EDV-Beratung und Informatik-Technologien mbH - initial implementation
* IBM Corporation - additional tests
*******************************************************************************/
package org.eclipse.ui.externaltools.internal.ant.editor.test;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Test suite for the Ant Editor
*
* @author Alf Schiefelbein
*/
public class AntEditorTests extends TestSuite {
public static Test suite() {
TestSuite suite= new AntEditorTests();
suite.setName("Ant Editor Unit Tests");
suite.addTest(new TestSuite(CodeCompletionTest.class));
suite.addTest(new TestSuite(TaskDescriptionProviderTest.class));
suite.addTest(new TestSuite(AntEditorContentOutlineTests.class));
suite.addTest(new TestSuite(EnclosingTargetSearchingHandlerTest.class));
return suite;
}
}