blob: 76c9c1c1a1966ad2bd30a312511cca42db86af0c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016-2017 Red Hat Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Mickael Istria, Sopot Cela (Red Hat Inc.)
*******************************************************************************/
package org.eclipse.ui.genericeditor.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
CompletionTest.class,
ContextInfoTest.class,
StylingTest.class,
HoverTest.class,
EditorTest.class,
AutoEditTest.class,
ReconcilerTest.class
})
public class GenericEditorTestSuite {
// see @SuiteClasses
}