1 package org.displaytag.jsptests; 2 3 import org.apache.commons.lang.StringUtils; 4 import org.displaytag.test.DisplaytagCase; 5 6 import com.meterware.httpunit.GetMethodWebRequest; 7 import com.meterware.httpunit.WebRequest; 8 import com.meterware.httpunit.WebResponse; 9 import com.meterware.httpunit.WebTable; 10 11 12 17 public class Displ145Test extends DisplaytagCase 18 { 19 20 23 public String getJspName() 24 { 25 return "DISPL-145.jsp"; 26 } 27 28 33 public void doTest(String jspName) throws Exception 34 { 35 String httpsUrl = StringUtils.replace(jspName, "http://", "https://"); 36 WebRequest request = new GetMethodWebRequest(httpsUrl); 37 38 WebResponse response = runner.getResponse(request); 39 40 WebTable[] tables = response.getTables(); 41 assertEquals("Wrong number of tables.", 6, tables.length); 42 43 } 44 45 } | Popular Tags |