mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 05:05:43 +02:00
autotools: Move tests using UI components to ui tests.
Change-Id: Ia23389578520c8e21223eb1f9d8e2291a453caf4 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
This commit is contained in:
parent
c6dc02c94d
commit
f616c9e74e
8 changed files with 8 additions and 9 deletions
|
@ -20,5 +20,4 @@ Bundle-ActivationPolicy: lazy
|
||||||
Fragment-Host: org.eclipse.cdt.autotools.core
|
Fragment-Host: org.eclipse.cdt.autotools.core
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||||
Export-Package: org.eclipse.cdt.autotools.tests,
|
Export-Package: org.eclipse.cdt.autotools.tests,
|
||||||
org.eclipse.cdt.autotools.tests.autoconf,
|
|
||||||
org.eclipse.cdt.autotools.tests.editors
|
org.eclipse.cdt.autotools.tests.editors
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.autotools.tests;
|
package org.eclipse.cdt.autotools.tests;
|
||||||
|
|
||||||
import org.eclipse.cdt.autotools.tests.autoconf.AutoconfTests;
|
|
||||||
import org.eclipse.cdt.autotools.tests.editors.EditorTests;
|
import org.eclipse.cdt.autotools.tests.editors.EditorTests;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
||||||
|
@ -26,7 +25,6 @@ import org.junit.runners.Suite;
|
||||||
AutotoolsEnvironmentVarTest.class,
|
AutotoolsEnvironmentVarTest.class,
|
||||||
LibtoolGCCBuildCommandParserTest.class,
|
LibtoolGCCBuildCommandParserTest.class,
|
||||||
UpdateConfigureTest.class,
|
UpdateConfigureTest.class,
|
||||||
AutoconfTests.class,
|
|
||||||
EditorTests.class
|
EditorTests.class
|
||||||
})
|
})
|
||||||
public class AllAutotoolsTests {
|
public class AllAutotoolsTests {
|
||||||
|
|
|
@ -13,6 +13,7 @@ package org.eclipse.cdt.autotools.ui.tests;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.autotools.ui.tests.autoconf.AutoconfTests;
|
||||||
import org.eclipse.cdt.utils.spawner.ProcessFactory;
|
import org.eclipse.cdt.utils.spawner.ProcessFactory;
|
||||||
import org.junit.Assume;
|
import org.junit.Assume;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
@ -24,7 +25,8 @@ import org.junit.runners.Suite;
|
||||||
TestToolActions.class,
|
TestToolActions.class,
|
||||||
TestEnvironmentVars.class,
|
TestEnvironmentVars.class,
|
||||||
TestMakeTargets.class,
|
TestMakeTargets.class,
|
||||||
SetConfigurationParameter.class
|
SetConfigurationParameter.class,
|
||||||
|
AutoconfTests.class
|
||||||
})
|
})
|
||||||
|
|
||||||
public class AllTests {
|
public class AllTests {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Red Hat Incorporated - initial API and implementation
|
* Red Hat Incorporated - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.autotools.tests.autoconf;
|
package org.eclipse.cdt.autotools.ui.tests.autoconf;
|
||||||
|
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Suite;
|
import org.junit.runners.Suite;
|
|
@ -8,7 +8,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Ed Swartz (Nokia) - initial API and implementation
|
* Ed Swartz (Nokia) - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.autotools.tests.autoconf;
|
package org.eclipse.cdt.autotools.ui.tests.autoconf;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
|
@ -9,7 +9,7 @@
|
||||||
* Ed Swartz (Nokia) - initial API and implementation
|
* Ed Swartz (Nokia) - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.autotools.tests.autoconf;
|
package org.eclipse.cdt.autotools.ui.tests.autoconf;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
|
@ -9,7 +9,7 @@
|
||||||
* Ed Swartz (Nokia) - initial API and implementation
|
* Ed Swartz (Nokia) - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.autotools.tests.autoconf;
|
package org.eclipse.cdt.autotools.ui.tests.autoconf;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
|
@ -9,7 +9,7 @@
|
||||||
* Ed Swartz (Nokia) - initial API and implementation
|
* Ed Swartz (Nokia) - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.autotools.tests.autoconf;
|
package org.eclipse.cdt.autotools.ui.tests.autoconf;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertSame;
|
import static org.junit.Assert.assertSame;
|
Loading…
Add table
Reference in a new issue