Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Ridge2016-06-01 07:29:16 +0000
committerNathan Ridge2016-06-09 23:50:51 +0000
commit03f0a71a3a19605a2a151e32adbd53a71ae64072 (patch)
treef0e26d5d5729fedb9efd2add504a19163674588c
parentfe88f1f305d45b4eab77860384803b5cb3ef41a8 (diff)
downloadorg.eclipse.cdt-03f0a71a3a19605a2a151e32adbd53a71ae64072.tar.gz
org.eclipse.cdt-03f0a71a3a19605a2a151e32adbd53a71ae64072.tar.xz
org.eclipse.cdt-03f0a71a3a19605a2a151e32adbd53a71ae64072.zip
BUg 495095 - Disable a test that tests functionality that isn't implemented yet
-rw-r--r--core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CPPParameterGuessingTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CPPParameterGuessingTests.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CPPParameterGuessingTests.java
index 4ed70d6dbb5..6716cb1677d 100644
--- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CPPParameterGuessingTests.java
+++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist2/CPPParameterGuessingTests.java
@@ -89,7 +89,7 @@ public class CPPParameterGuessingTests extends AbstractContentAssistTest {
// void foo(){
// aClass aTypeObj;
// tFunc<aClass> (
- public void testTemplateFunction() throws Exception {
+ public void _testTemplateFunction() throws Exception {
Map<String, String[][]> resultsMap = new HashMap<>();
resultsMap.put("tFunc<aClass> (x, y)", new String[][] { { "aTypeObj" }, { "bTypeObj" } });
assertParametersGuesses(resultsMap);

Back to the top