1 package org.displaytag.jsptests; 2 3 import org.displaytag.test.DisplaytagCase; 4 5 import com.meterware.httpunit.GetMethodWebRequest; 6 import com.meterware.httpunit.WebRequest; 7 import com.meterware.httpunit.WebResponse; 8 import com.meterware.httpunit.WebTable; 9 10 11 16 public class SetPropertyTagTest extends DisplaytagCase 17 { 18 19 22 public String getJspName() 23 { 24 return "setproperty.jsp"; 25 } 26 27 32 public void doTest(String jspName) throws Exception 33 { 34 35 WebRequest request = new GetMethodWebRequest(jspName); 36 37 WebResponse response = runner.getResponse(request); 38 39 if (log.isDebugEnabled()) 40 { 41 log.debug("RESPONSE: " + response.getText()); 42 } 43 44 WebTable[] tables = response.getTables(); 45 46 assertEquals("Expected 3 table in result.", 3, tables.length); 47 48 assertEquals("First table should contain one row only", 1, tables[0].getRowCount()); 49 assertEquals("Second table should contain header plus one row", 2, tables[1].getRowCount()); 50 assertEquals("Third table should contain one row only", 1, tables[2].getRowCount()); 51 } 52 } | Popular Tags |