Author: vrubezhny
Date: 2008-11-25 05:10:00 -0500 (Tue, 25 Nov 2008)
New Revision: 12006
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistTest.java
Log:
JBIDE-3172 Seam EL Hyper Links don't not recognize "var" attributes in JSF
tags
JUnit TestCases are updated due to meet the latest changes in OpenOns and Test Project
configuration.
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java 2008-11-25
10:07:57 UTC (rev 12005)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistJbide1676Test.java 2008-11-25
10:10:00 UTC (rev 12006)
@@ -37,6 +37,8 @@
private static final String EL_START_TEMPLATE = "#{";
private static final String[] VALID_SEAM_EL_PROPOSALS = new String[] {
+ "TestSeamELContentAssistEntityManagerFactory",
+ "fullPostList",
"actor",
"applicationContext",
"authenticator",
Modified:
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistTest.java 2008-11-25
10:07:57 UTC (rev 12005)
+++
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/ca/SeamELContentAssistTest.java 2008-11-25
10:10:00 UTC (rev 12006)
@@ -58,7 +58,7 @@
*/
public void testFrameworkComponents() {
assertTrue("Test project \"" + PROJECT_NAME + "\" is not
loaded", (project != null));
- checkProposals("/WebContent/frameworkComponents.xhtml", 684, new
String[]{"fullPostList.resultList", "fullPostList.next"}, false);
+ checkProposals("/WebContent/frameworkComponents.xhtml", 698, new
String[]{"fullPostList.resultList", "fullPostList.next"}, false);
}
/**
@@ -99,6 +99,7 @@
private static final String[] VALID_SEAM_EL_PROPOSALS = new String[] {
"TestSeamELContentAssistEntityManagerFactory",
+ "fullPostList",
"actor",
"applicationContext",
"authenticator",
@@ -528,7 +529,7 @@
if (filter.indexOf("#") == -1) {
filteredValidProposals = renewWithPrefixAndPostfix(filteredValidProposals,
"#{", "}");
} else if (filter.indexOf("#{") == -1) {
- filteredValidProposals = renewWithPrefixAndPostfix(filteredValidProposals,
"{", "}");
+ filteredValidProposals = renewWithPrefixAndPostfix(filteredValidProposals,
"{", /*"}"*/"");
}
Show replies by date