blob: 6e9c5e9e8557cfaa49dfa172ea3c2da0c810c337 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2019 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:
* Nicolas Guyomar (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - Bug 335003 - [Discoverer] : Existing Discoverers Refactoring based on new framework
* Gregoire Dupe (Mia-Software) - Bug 386235 - [Releng] Use tycho to build MoDisco
*******************************************************************************/
package org.eclipse.modisco.java.composition.discoverer.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ TestMemoryUsage.class, TestJavaApp.class,
CompositeDiscoveryTests.class, StrategySourceJavaTests.class })
public class AllTestsInUIThread {
// JUnit 4 test suite
}