/******************************************************************************* * Copyright (c) 2008, 2015 Red Hat Inc.. * 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: * Red Hat Incorporated - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.autotools.tests; import org.eclipse.cdt.autotools.tests.editors.EditorTests; import org.junit.runner.RunWith; import org.junit.runners.Suite; /** On Windows requires either Cygwin or MinGW to be in PATH */ @RunWith(Suite.class) @Suite.SuiteClasses({ AutotoolsProjectTest0.class, AutotoolsProjectNatureTest.class, AutotoolsProjectTest1.class, AutotoolsProjectTest2.class, AutotoolsVirtualFolderTest.class, AutotoolsEnvironmentVarTest.class, LibtoolGCCBuildCommandParserTest.class, UpdateConfigureTest.class, EditorTests.class }) public class AllAutotoolsTests { }