[seam-commits] Seam SVN: r11298 - in branches/community/Seam_2_2/src/test/ftest: examples/rss and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Jul 21 02:46:08 EDT 2009


Author: kpiwko at redhat.com
Date: 2009-07-21 02:46:08 -0400 (Tue, 21 Jul 2009)
New Revision: 11298

Modified:
   branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml
   branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml
   branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml
   branches/community/Seam_2_2/src/test/ftest/readme.txt
Log:
JBQA-2276 rewritten rss-example test to use JAXP instead of Selenium

Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml	2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/build.xml	2009-07-21 06:46:08 UTC (rev 11298)
@@ -22,6 +22,5 @@
 -->
 <project name="rss.ftest.build" basedir="." default="build">
 	<property name="example.name" value="rss" />
-
 	<import file="../build.xml" />
 </project>

Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml	2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss4.xml	2009-07-21 06:46:08 UTC (rev 11298)
@@ -18,9 +18,10 @@
 <!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
 <suite name="RSS example" verbose="2" parallel="false">
 	<test name="rss_jboss4">
-		<parameter name="PROPERTY_FILE" value="" />
+		<parameter name="PROPERTY_FILE" value="" />		
+		<parameter name="xml.namespace.aware" value="false" />
 		<classes>
-			<class name="org.jboss.seam.example.rss.test.selenium.SeleniumRSSTest" />
+			<class name="org.jboss.seam.example.rss.test.xml.SeamXMLRSSTest" />
 		</classes>
 	</test>
 </suite>

Modified: branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml	2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/examples/rss/jboss5.xml	2009-07-21 06:46:08 UTC (rev 11298)
@@ -19,8 +19,9 @@
 <suite name="RSS example" verbose="2" parallel="false">
 	<test name="rss_jboss5">
 		<parameter name="PROPERTY_FILE" value="" />
+		<parameter name="xml.namespace.aware" value="false" />
 		<classes>
-			<class name="org.jboss.seam.example.rss.test.selenium.SeleniumRSSTest" />
+			<class name="org.jboss.seam.example.rss.test.xml.SeamXMLRSSTest" />
 		</classes>
 	</test>
 </suite>

Modified: branches/community/Seam_2_2/src/test/ftest/readme.txt
===================================================================
--- branches/community/Seam_2_2/src/test/ftest/readme.txt	2009-07-20 22:51:43 UTC (rev 11297)
+++ branches/community/Seam_2_2/src/test/ftest/readme.txt	2009-07-21 06:46:08 UTC (rev 11298)
@@ -26,6 +26,7 @@
 
 How To:
 ----------
+* Build seam from $SEAM_HOME directory to update maven repository for current snapshot
 * Follow specific instructions for your OS
 * Change to the $SEAM_HOME/src/test/ftest directory
 * Set jboss*.home properties in ftest.properties to point to your application server locations
@@ -58,6 +59,7 @@
 	* Set selenium.server.cmd.args= -singleWindow in ftest.properties - some tests are behaving unexpectedly in multiwindow mode on IE
 	* Set security and privacy levels to lowest possible and turn off pop-up blocker in Internet options -> Security -> Custom level
 
+
 Unix/Linux Setup
 -----------------
 * You must set to the location of your firefox browser like this:



More information about the seam-commits mailing list