blob: 62910499e27c3cbac053150d24488c9bd9baa91d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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
*
*******************************************************************************/
package org.eclipse.dltk.ui.tests;
import org.eclipse.dltk.ui.tests.core.DLTKUILanguageManagerTests;
import org.eclipse.dltk.ui.tests.core.ScriptElementLabelsTest;
import org.eclipse.dltk.ui.tests.navigator.scriptexplorer.PackageExplorerTests;
import org.eclipse.dltk.ui.tests.refactoring.ModelElementUtilTests;
import org.eclipse.dltk.ui.tests.templates.ScriptTemplateContextTest;
import org.eclipse.dltk.ui.tests.text.FloatNumberRuleTest;
import org.eclipse.dltk.ui.tests.text.TodoHighlightingTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({ ScriptElementLabelsTest.class,
DLTKUILanguageManagerTests.class, ModelElementUtilTests.class,
PackageExplorerTests.class, ScriptTemplateContextTest.class,
TodoHighlightingTest.class, FloatNumberRuleTest.class })
public class AllTests {
}