Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java')
-rw-r--r--core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java
index e27ab1474dc..9966344e85b 100644
--- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java
+++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/DOMParserTestSuite.java
@@ -13,12 +13,12 @@
*******************************************************************************/
package org.eclipse.cdt.core.parser.tests.ast2;
+import org.eclipse.cdt.core.parser.tests.prefix.CompletionTestSuite;
+
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
-import org.eclipse.cdt.core.parser.tests.prefix.CompletionTestSuite;
-
/**
* @author jcamelon
*/
@@ -37,13 +37,11 @@ public class DOMParserTestSuite extends TestCase {
suite.addTest(DOMLocationTests.suite());
suite.addTestSuite(DOMLocationMacroTests.class);
suite.addTest(ImageLocationTests.suite());
- suite.addTest(DOMLocationInclusionTests.suite());
suite.addTestSuite(AST2KnRTests.class);
suite.addTestSuite(AST2UtilTests.class);
suite.addTestSuite(AST2UtilOldTests.class);
suite.addTestSuite(AST2SelectionParseTest.class);
suite.addTest(ASTNodeSelectorTest.suite());
- suite.addTestSuite(CodeReaderCacheTest.class);
suite.addTest(AST2CPPSpecTest.suite());
suite.addTestSuite(AST2CSpecTest.class);
suite.addTestSuite(DOMSelectionParseTest.class);

Back to the top