Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-02-04 21:11:09 +0000
committerspingel2011-02-04 21:11:09 +0000
commit3de8b5b32b991dc80524d75e016c2dc24570a5ad (patch)
treeae151d0deb29618cbc29f6bad7f9a1714665a068
parentf481108aed1a86c760903247c3255398e467ca51 (diff)
downloadorg.eclipse.mylyn-3de8b5b32b991dc80524d75e016c2dc24570a5ad.tar.gz
org.eclipse.mylyn-3de8b5b32b991dc80524d75e016c2dc24570a5ad.tar.xz
org.eclipse.mylyn-3de8b5b32b991dc80524d75e016c2dc24570a5ad.zip
ASSIGNED - bug 328300: [CDT][context] Mylyn automatically add all Includes in the context of the task
https://bugs.eclipse.org/bugs/show_bug.cgi?id=328300
-rw-r--r--org.eclipse.mylyn.tests/META-INF/MANIFEST.MF1
-rw-r--r--org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java2
2 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tests/META-INF/MANIFEST.MF b/org.eclipse.mylyn.tests/META-INF/MANIFEST.MF
index 9a472feb..3fa18ad3 100644
--- a/org.eclipse.mylyn.tests/META-INF/MANIFEST.MF
+++ b/org.eclipse.mylyn.tests/META-INF/MANIFEST.MF
@@ -16,6 +16,7 @@ Require-Bundle: org.junit,
org.eclipse.mylyn.discovery.tests,
org.eclipse.mylyn.resources.tests,
org.eclipse.mylyn.java.tests,
+ org.eclipse.mylyn.cdt.tests,
org.eclipse.mylyn.tasks.tests,
org.eclipse.mylyn.monitor.tests,
org.eclipse.mylyn.tasks.ui,
diff --git a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
index ed887194..15124d06 100644
--- a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
+++ b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
@@ -15,6 +15,7 @@ import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.mylyn.builds.tests.AllBuildsTests;
+import org.eclipse.mylyn.cdt.tests.AllCdtTests;
import org.eclipse.mylyn.commons.tests.AllCommonsTests;
import org.eclipse.mylyn.commons.tests.support.ManagedTestSuite;
import org.eclipse.mylyn.context.tests.AllContextTests;
@@ -45,6 +46,7 @@ public class AllNonConnectorTests {
suite.addTest(AllContextTests.suite());
suite.addTest(AllDiscoveryTests.suite());
suite.addTest(AllJavaTests.suite());
+ suite.addTest(AllCdtTests.suite());
suite.addTest(AllMonitorTests.suite());
suite.addTest(AllIntegrationTests.suite());
suite.addTest(AllIdeTests.suite());

Back to the top