blob: 83cdbe808de3c9d97fb18dd78b3db9755f2d2ff1 [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:
* koegel
******************************************************************************/
package org.eclipse.emf.emfstore.client.api.test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test Suite for running all tests of canonization.
*
* @author koegel
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
BranchTest.class,
ServerCreationTest.class,
ModelElementTest.class,
ServerCommunicationTest.class,
UnsharedLocalProjectTest.class,
SharedProjectTest.class,
UsersessionTest.class,
WorkspaceTest.class,
RemoteProjectTest.class,
RunESCommandTest.class
})
public class AllAPITests {
}