blob: 8fd0e4593ebd57579b76f05ae785409e2caf3cb8 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2018 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute and Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* 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
* $Id: AllTests.java 23494 2010-02-05 23:06:44Z stephan $
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests
{
public static Test suite()
{
TestSuite suite = new TestSuite("All OTDT Tests without UI");
//$JUnit-BEGIN$
//Parser
suite.addTest(org.eclipse.objectteams.otdt.tests.parser.AllTests.suite());
//compiler
suite.addTest(org.eclipse.objectteams.otdt.tests.compiler.errorreporting.TestAll.suite());
suite.addTest(org.eclipse.objectteams.otdt.tests.compiler.ast.TypeDeclarationTest.suite());
suite.addTest(org.eclipse.objectteams.otdt.tests.compiler.smap.AllTests.suite());
suite.addTest(org.eclipse.objectteams.otdt.tests.compiler.AttributesTest.suite());
//hierarchy
suite.addTest(org.eclipse.objectteams.otdt.tests.hierarchy.AllTests.suite());
//model
suite.addTest(org.eclipse.objectteams.otdt.tests.otmodel.AllTests.suite());
//search
suite.addTest(org.eclipse.objectteams.otdt.tests.search.AllTests.suite());
//completion
suite.addTest(org.eclipse.objectteams.otdt.tests.model.AllTests.suite());
//formatter
suite.addTest(org.eclipse.objectteams.otdt.core.tests.formatter.FormatterTests.suite());
//selection
suite.addTest(org.eclipse.objectteams.otdt.tests.selection.AllTests.suite());
//builder
// tests moved to separate plug-in, needs OT/Equinox to enable compiler.adaptor.
// the OTJLD suite:
suite.addTest(org.eclipse.objectteams.otdt.tests.otjld.AllTests.suite());
//$JUnit-END$
return suite;
}
}