Author: dan.j.allen
Date: 2009-03-06 17:31:53 -0500 (Fri, 06 Mar 2009)
New Revision: 10128
Modified:
trunk/seam-gen/test/ActionTest.java
trunk/seam-gen/test/FormTest.java
Log:
pass viewId into constructor of request object
Modified: trunk/seam-gen/test/ActionTest.java
===================================================================
--- trunk/seam-gen/test/ActionTest.java 2009-03-06 19:55:52 UTC (rev 10127)
+++ trunk/seam-gen/test/ActionTest.java 2009-03-06 22:31:53 UTC (rev 10128)
@@ -7,7 +7,7 @@
@Test
public void test_@methodName@() throws Exception {
- new FacesRequest() {
+ new FacesRequest("/@pageName@.xhtml") {
@Override
protected void invokeApplication() {
//call action methods here
Modified: trunk/seam-gen/test/FormTest.java
===================================================================
--- trunk/seam-gen/test/FormTest.java 2009-03-06 19:55:52 UTC (rev 10127)
+++ trunk/seam-gen/test/FormTest.java 2009-03-06 22:31:53 UTC (rev 10128)
@@ -7,7 +7,7 @@
@Test
public void test_@methodName@() throws Exception {
- new FacesRequest() {
+ new FacesRequest("/@pageName@.xhtml") {
@Override
protected void updateModelValues() throws Exception {
//set form input to model attributes
Show replies by date