blob: c310ebc22a0fcd6c891a97f6fc3931b8e5cfe098 [file] [log] [blame]
/*
* Copyright (c) 2007 Borland Software Corporation
*
* 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
*
* Contributors:
* Sergey Gribovsky (Borland) - initial API and implementation
*/
package org.eclipse.uml2.diagram.activity.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.uml2.diagram.activity.tests.tools.CreationToolTest;
import org.eclipse.uml2.diagram.activity.tests.wholediagram.TestWholeDiagramSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.uml2.diagram.activity"); //$NON-NLS-1$
//$JUnit-BEGIN$
suite.addTestSuite(CreationToolTest.class);
suite.addTest(new TestWholeDiagramSuite());
//$JUnit-END$
return suite;
}
}