blob: f15b2fcfd65e92e2cba6acd3270bd4e6cf0e8956 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
*
* 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:
* Edgar Mueller - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.client.test.ui;
import org.eclipse.emf.emfstore.client.test.common.cases.ESTestWithLoggedInUser;
import org.eclipse.emf.emfstore.client.test.ui.conflictdetection.BidirectionalConflictMergeTest;
import org.eclipse.emf.emfstore.client.test.ui.controllers.AllUIControllerTests;
import org.eclipse.emf.emfstore.client.test.ui.testers.ServerInfoIsLoggedInTesterTest;
import org.eclipse.emf.emfstore.internal.client.configuration.Behavior;
import org.eclipse.emf.emfstore.internal.client.model.Configuration;
import org.eclipse.emf.emfstore.internal.server.ServerConfiguration;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import com.google.common.base.Optional;
/**
* Runs all UI tests.
*
* @author emueller
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
AllUIControllerTests.class,
BidirectionalConflictMergeTest.class,
ServerInfoIsLoggedInTesterTest.class
})
@SuppressWarnings("restriction")
public class AllUITests extends ESTestWithLoggedInUser {
public static final int TIMEOUT = 20000;
private static final Optional<Integer> MIN_CHANGEPACKAGE_FRAGMENT_SIZE = Optional.of(10000);
private static Behavior clientBehavior = Configuration.getClientBehavior();
private static Optional<Integer> clientFragmentSize;
private static Optional<Integer> serverFragmentSize;
@BeforeClass
public static void beforeClass() {
clientFragmentSize = clientBehavior.getChangePackageFragmentSize();
serverFragmentSize = ServerConfiguration.getChangePackageFragmentSize();
Configuration.getClientBehavior().setChangePackageFragmentSize(
MIN_CHANGEPACKAGE_FRAGMENT_SIZE);
ServerConfiguration.setChangePackageFragmentSize(
MIN_CHANGEPACKAGE_FRAGMENT_SIZE);
startEMFStore();
}
@AfterClass
public static void afterClass() {
stopEMFStore();
Configuration.getClientBehavior().setChangePackageFragmentSize(clientFragmentSize);
ServerConfiguration.setChangePackageFragmentSize(serverFragmentSize);
}
}