/* * Copyright (c) 2006 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: * Michael Golubev (Borland) - initial API and implementation */ package org.eclipse.uml2.diagram.profile.tests; import org.eclipse.uml2.diagram.profile.tests.palette.ProfileDPaletteEntriesSuite; import org.eclipse.uml2.diagram.profile.tests.sample.ProfileTestSampleSuite; import org.eclipse.uml2.diagram.profile.tests.tool.ProfileGroupTest; import org.eclipse.uml2.diagram.profile.tests.tool.UMLGroupTest; import junit.framework.Test; import junit.framework.TestSuite; public class AllTests { public static Test suite() { TestSuite suite = new TestSuite("Test for org.eclipse.uml2.diagram.profile"); //$JUnit-BEGIN$ suite.addTest(new ProfileTestSampleSuite()); suite.addTest(new ProfileDPaletteEntriesSuite()); suite.addTestSuite(ProfileGroupTest.class); suite.addTestSuite(UMLGroupTest.class); //$JUnit-END$ return suite; } }