You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2006/06/21 06:54:23 UTC

svn commit: r415907 - /myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java

Author: matzew
Date: Tue Jun 20 21:54:23 2006
New Revision: 415907

URL: http://svn.apache.org/viewvc?rev=415907&view=rev
Log:
added empty test case

Added:
    myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java

Added: myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java?rev=415907&view=auto
==============================================================================
--- myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java (added)
+++ myfaces/core/branches/jsf12/impl/src/test/java/org/apache/myfaces/application/jsp/NavigationHandlerImplTest.java Tue Jun 20 21:54:23 2006
@@ -0,0 +1,29 @@
+package org.apache.myfaces.application.jsp;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.apache.shale.test.base.AbstractJsfTestCase;
+
+public class NavigationHandlerImplTest extends AbstractJsfTestCase
+{
+
+	    public static void main(String[] args) {
+	        junit.textui.TestRunner.run(JspStateManagerImplTest.class);
+	    }
+
+	    public NavigationHandlerImplTest(String name) {
+	        super(name);
+	    }
+	    
+	    public void testNavigationRules() throws Exception
+	    {
+	    	//TODO
+	    }
+
+	    // Return the tests included in this test case.
+	    public static Test suite()
+	    {
+	        return (new TestSuite(JspStateManagerImplTest.class));
+	    }
+}
\ No newline at end of file