blob: 8af78bd46e9479f9802d63be0705ee864b8b48e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
* Maximilian Koegel - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.client.conflictdetection.test;
import org.eclipse.emf.emfstore.client.conflictdetection.test.merging.AllMergeTests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test Suite for running all tests of workspace.
*
* @author koegel
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
ConflictDetectionAttributeTest.class,
ConflictDetectionMultiAttributeTest.class,
ConflictDetectionMapTest.class,
ConflictDetectionReferenceTest.class,
ConflictDetectionDeleteTest.class,
ConflictDetectionMultiReferenceTest.class,
AllMergeTests.class
})
public class AllConflictDetectionTests {
}