[seam-commits] Seam SVN: r10128 - trunk/seam-gen/test.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Mar 6 17:31:54 EST 2009
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_ at methodName@() throws Exception {
- new FacesRequest() {
+ new FacesRequest("/@pageName at .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_ at methodName@() throws Exception {
- new FacesRequest() {
+ new FacesRequest("/@pageName at .xhtml") {
@Override
protected void updateModelValues() throws Exception {
//set form input to model attributes
More information about the seam-commits
mailing list