blob: b3ff5082a2bf53c8e0bb78c59214ca95df9f85ac [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 IBM Corporation and others.
*
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.api.tools.comparator.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test suite for all of the API tools test
*
* @since 1.0.0
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
FieldDeltaTests.class, InterfaceDeltaTests.class, ClassDeltaTests.class, AnnotationDeltaTests.class,
EnumDeltaTests.class, MethodDeltaTests.class, MixedTypesDeltaTests.class, BundlesDeltaTests.class,
RestrictionsDeltaTests.class, ApiScopeDeltaTests.class, Java8DeltaTests.class
})
public class AllDeltaTests {
}