blob: 44608c1b3e05285d4b5e887c8fefecf00e42325c [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2010 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute and Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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.parser;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author anklam
*
* @version $Id: AllTests.java 23494 2010-02-05 23:06:44Z stephan $
*/
public class AllTests
{
public static Test suite()
{
TestSuite suite = new TestSuite(
"All Parser Tests");
//$JUnit-BEGIN$
suite.addTest(SourceElementParserTest.suite());
//$JUnit-END$
return suite;
}
}