blob: 1a6b117bb07629232ccef42dd5802fdef359c4f5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire Dupe (Mia-Software) - Bug 386235 - [Releng] Use tycho to build MoDisco
*******************************************************************************/
package org.eclipse.modisco.infra.browser.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
TestMetaclasses.class,
TestNavigate.class,
TestOpenModel.class,
TestSearch.class,
TestURIDialog.class
})
// NO JavaScalabilityTest !
public class AllTestsNotInUIThread {
// JUnit 4 test suite
}