/******************************************************************************* * <copyright> * * Copyright (c) 2005, 2013 SAP AG. * 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: * SAP AG - initial API, implementation and documentation * Henrik Rentz-Reichert - mwenz - Bug 376544 - bug in re-connecting a connection with identical start and end anchor * mwenz - Bug 394801 - AddGraphicalRepresentation doesn't carry properties * mwenz - Bug 421754 - Absolute position of active Shape nested in inactive ContainerShape is calculated incorrectly * mwenz - Bug 421813 - Relative position to diagram of active Shape nested in inactive ContainerShape is calculated incorrectly * * </copyright> * *******************************************************************************/ package org.eclipse.graphiti.tests; import org.eclipse.graphiti.tests.cases.CreateServiceTest; import org.eclipse.graphiti.tests.cases.DefaultFeaturesTest; import org.eclipse.graphiti.tests.cases.FeatureParametersTest; import org.eclipse.graphiti.tests.cases.GaServiceTest; import org.eclipse.graphiti.tests.cases.LinkServiceTest; import org.eclipse.graphiti.tests.cases.PeServiceTest; import org.eclipse.graphiti.tests.cases.ReconnectionTest; import org.eclipse.graphiti.tests.tb.DefaultToolBehaviorProviderTests; import org.eclipse.graphiti.tests.internal.services.impl.PeServiceImplTest; import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ DefaultFeaturesTest.class, GaServiceTest.class, LinkServiceTest.class, PeServiceTest.class, CreateServiceTest.class, ReconnectionTest.class, FeatureParametersTest.class, DefaultToolBehaviorProviderTests.class, PeServiceImplTest.class }) public class AllTests { }