You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/03/18 18:44:59 UTC

svn commit: r638459 - /myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java

Author: bommel
Date: Tue Mar 18 10:44:51 2008
New Revision: 638459

URL: http://svn.apache.org/viewvc?rev=638459&view=rev
Log:
(TOBAGO-637) Generate Components, JSP Tags from annotations

added invokeOnComponent for tobago component

Modified:
    myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java

Modified: myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java?rev=638459&r1=638458&r2=638459&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java (original)
+++ myfaces/tobago/trunk/core/src/test/java/org/apache/myfaces/tobago/taglib/component/GenericTagUnitTest.java Tue Mar 18 10:44:51 2008
@@ -26,9 +26,10 @@
   }
 
   protected void setUp() throws Exception {
-    tldPaths = new String[2];
+    tldPaths = new String[1];
 		tldPaths[0] = "META-INF/org/apache/myfaces/tobago/taglib/component/tobago.tld";
-		tldPaths[1] = "META-INF/org/apache/myfaces/tobago/taglib/extension/tobago-extension.tld";
+    //TODO move to tobago-taglib-extension
+    //tldPaths[1] = "META-INF/org/apache/myfaces/tobago/taglib/extension/tobago-extension.tld";
     super.setUp();
   }