blob: d4338afd8dd984430c356023db4cacdeebe4793a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Christian W. Damus 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:
* Christian W. Damus - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.common.validation.tests;
import org.eclipse.emfforms.common.internal.validation.ValidationServiceImpl_Test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* Master test suite for the {@code efforms.common.validation} bundle.
*
* @author Christian W. Damus
*/
@RunWith(Suite.class)
@SuiteClasses({ //
ValidationServiceImpl_Test.class, //
})
public class AllTests {
// Specified in the annotations
}