blob: 7b2beeea0b27be6c74d830153923649145a87677 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Mia-Software.
* 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
}