Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/suite/AutomatedIntegrationSuite.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/suite/AutomatedIntegrationSuite.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/suite/AutomatedIntegrationSuite.java b/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/suite/AutomatedIntegrationSuite.java
new file mode 100644
index 00000000000..fc7b8a16dec
--- /dev/null
+++ b/build/org.eclipse.cdt.managedbuilder.ui.tests/src/org/eclipse/cdt/managedbuilder/ui/tests/suite/AutomatedIntegrationSuite.java
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2006 IBM Corporation 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:
+ * IBM - Initial API and implementation
+ *******************************************************************************/
+package org.eclipse.cdt.managedbuilder.ui.tests.suite;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.eclipse.cdt.managedbuilder.ui.tests.TestCProjectPlatformPage;
+import org.eclipse.cdt.managedbuilder.ui.tests.TestCustomPageManager;
+
+/**
+ *
+ */
+public class AutomatedIntegrationSuite {
+ public static void main(String[] args) {
+ junit.textui.TestRunner.run(AutomatedIntegrationSuite.suite());
+ }
+ public static Test suite() {
+ TestSuite suite = new TestSuite(
+ "Test for org.eclipse.cdt.managedbuilder.ui.tests");
+ //$JUnit-BEGIN$
+// TODO uncoment this
+ suite.addTest(TestCustomPageManager.suite());
+ suite.addTestSuite(TestCProjectPlatformPage.class);
+
+ //$JUnit-END$
+ return suite;
+ }
+}

Back to the top