Revision: 721
          http://jwebunit.svn.sourceforge.net/jwebunit/?rev=721&view=rev
Author:   henryju
Date:     2008-04-14 03:17:37 -0700 (Mon, 14 Apr 2008)

Log Message:
-----------
Added a test case to ensure following bug is fixed:
[1636773] assertTableRowsEqual semicolon behavior

Modified Paths:
--------------
    
trunk/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/TableAssertionsTest.java
    
trunk/jwebunit-commons-tests/src/main/resources/testcases/TableAssertionsTest/TableAssertionsTestPage.html

Modified: 
trunk/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/TableAssertionsTest.java
===================================================================
--- 
trunk/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/TableAssertionsTest.java
  2008-04-11 14:24:51 UTC (rev 720)
+++ 
trunk/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/TableAssertionsTest.java
  2008-04-14 10:17:37 UTC (rev 721)
@@ -145,7 +145,7 @@
        public void testTableWithSpaces() throws Throwable {
                assertTablePresent("tree");
                String[][] table = { { "root", "", "", "" },
-                               { "child1", "", "child2", "" },
+                               { "child1 ;semicolon", "", "child2", "" },
                                { "child1.1", "", "child2.1", "child2.2" } };
                assertTableEquals("tree", table);
        }
@@ -205,7 +205,7 @@
     public void testTableWithSpacesMatch() throws Throwable {
         assertTablePresent("tree");
         String[][] table = {{"root", "", "", ""},
-        {"child1", "", "child2", ""},
+        {"child1 ;semicolon", "", "child2", ""},
         {"child1.1", "", "child2.1", "child2.2"}};
         assertTableMatch("tree", table);
     }

Modified: 
trunk/jwebunit-commons-tests/src/main/resources/testcases/TableAssertionsTest/TableAssertionsTestPage.html
===================================================================
--- 
trunk/jwebunit-commons-tests/src/main/resources/testcases/TableAssertionsTest/TableAssertionsTestPage.html
  2008-04-11 14:24:51 UTC (rev 720)
+++ 
trunk/jwebunit-commons-tests/src/main/resources/testcases/TableAssertionsTest/TableAssertionsTestPage.html
  2008-04-14 10:17:37 UTC (rev 721)
@@ -24,7 +24,7 @@
                <table id="tree"><tbody>
                        <tr><td>root</td><td>&nbsp;</td>
                        <td>&nbsp;</td><td>&nbsp;</td></tr>
-                       <tr><td>child1</td><td>&nbsp;</td>
+                       <tr><td><a href="">child1</a><a href=""> 
;semicolon</a></td><td>&nbsp;</td>
                        <td>child2</td><td>&nbsp;</td></tr>
                        <tr><td>child1.1</td><td>&nbsp;</td>
                        <td>child2.1</td><td>child2.2</td></tr>


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
JWebUnit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to