blob: f9d84e07bb18d9a48a517414e1ff73e97e9c8cbd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2014 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:
* chodnick - initial API and implementation
* Edgar Mueller - added ProjectTest
******************************************************************************/
package org.eclipse.emf.emfstore.client.changetracking.test.notification;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test Suite for running all tests of workspace.
*
* @author chodnick
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
AttributeNotificationTest.class,
ReferenceNotificationTest.class,
MoveNotificationTest.class,
MultiReferenceNotificationTest.class,
ContainmentNotificationTest.class,
NotificationToOperationConverterTest.class,
ProjectTest.class })
public class AllNotificationTests {
}