blob: 73f390537fe8fcc9408a9da90073ce94f6097ac8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat Inc. 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:
* Mickael Istria (Red Hat Inc.) - initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.contenttype.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/*
* TODO get this suite to also include ContentTypeTests contributed in
* eclipse.platform.resources repository (and move those tests here)
*/
@RunWith(Suite.class)
@SuiteClasses(value = { UserContentTypeTest.class, })
public class AllTests {
}