blob: 5000dc27bdf46b1a451958e9a291e7aeb7523a88 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2018 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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eugen Neufeld - initial API and implementation
* Christian W. Damus - bug 529542
******************************************************************************/
package org.eclipse.emfforms.bazaar.internal;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Test Suite for bazaar Tests.
*
* @author Jonas Helming
*
*/
@RunWith(Suite.class)
@SuiteClasses({ Bazaar_Test.class,
BazaarBuilder_Test.class,
ThreadSafeBazaar_ITest.class,
Bazaar_PTest.class
})
public class AllTests {
}