mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug 408470 - Move the variable template tests into the new cxx14 subpackage
Change-Id: I45a598d6cf920860a6f08d25e8921cbf310734a8
This commit is contained in:
parent
1f2198a8bf
commit
08ea44c0af
2 changed files with 6 additions and 4 deletions
|
@ -13,6 +13,7 @@
|
|||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.parser.tests.ast2;
|
||||
|
||||
import org.eclipse.cdt.core.parser.tests.ast2.cxx14.VariableTemplateTests;
|
||||
import org.eclipse.cdt.core.parser.tests.prefix.CompletionTestSuite;
|
||||
|
||||
import junit.framework.Test;
|
||||
|
@ -57,7 +58,7 @@ public class DOMParserTestSuite extends TestCase {
|
|||
suite.addTest(AccessControlTests.suite());
|
||||
suite.addTest(VariableReadWriteFlagsTest.suite());
|
||||
suite.addTest(AST2CPPAttributeTests.suite());
|
||||
suite.addTest(AST2VariableTemplateTests.suite());
|
||||
suite.addTest(VariableTemplateTests.suite());
|
||||
return suite;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Contributors:
|
||||
* Lukas Wegmann (IFS) - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.parser.tests.ast2;
|
||||
package org.eclipse.cdt.core.parser.tests.ast2.cxx14;
|
||||
|
||||
import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
|
||||
import org.eclipse.cdt.core.dom.ast.IType;
|
||||
|
@ -23,15 +23,16 @@ import org.eclipse.cdt.core.dom.ast.cpp.ICPPVariable;
|
|||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPVariableInstance;
|
||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPVariableTemplate;
|
||||
import org.eclipse.cdt.core.parser.ParserLanguage;
|
||||
import org.eclipse.cdt.core.parser.tests.ast2.AST2TestBase;
|
||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.CPPClassInstance;
|
||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.CPPFieldTemplateSpecialization;
|
||||
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
public class AST2VariableTemplateTests extends AST2TestBase {
|
||||
public class VariableTemplateTests extends AST2TestBase {
|
||||
|
||||
public static TestSuite suite() {
|
||||
return suite(AST2VariableTemplateTests.class);
|
||||
return suite(VariableTemplateTests.class);
|
||||
}
|
||||
|
||||
// template<typename T> constexpr T pi = T(3);
|
Loading…
Add table
Reference in a new issue