blob: 4b2c1187fe0b0a93fe45ac04b9dec11cbc404af4 [file] [log] [blame]
/*
* Copyright (c) 2013, 2018 CEA and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Christian W. Damus (CEA) - initial API and implementation
* Christian W. Damus (CEA) - 286404
* Kenn Hussey - 535301
*
*/
package org.eclipse.uml2.ant.tests;
import org.eclipse.uml2.ant.app.tests.DefineProfileApplicationTest;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* The master test suite for the UML2 Ant Tasks tests.
*/
public class AntAllTests
extends TestSuite {
/**
* Initializes me with my name.
*/
public AntAllTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new AntAllTests("Ant Tasks Tests"); //$NON-NLS-1$
suite.addTestSuite(DefineProfileApplicationTest.class);
suite.addTestSuite(DefineProfileTaskTest.class);
return suite;
}
}