1 package org.displaytag.jsptests; 2 3 import org.displaytag.test.DisplaytagCase; 4 5 import com.meterware.httpunit.GetMethodWebRequest; 6 import com.meterware.httpunit.WebLink; 7 import com.meterware.httpunit.WebRequest; 8 import com.meterware.httpunit.WebResponse; 9 10 11 16 public class Displ147Test extends DisplaytagCase 17 { 18 19 22 public String getJspName() 23 { 24 return "DISPL-147.jsp"; 25 } 26 27 32 public void doTest(String jspName) throws Exception 33 { 34 WebRequest request = new GetMethodWebRequest(jspName); 35 36 WebResponse response = runner.getResponse(request); 37 if (log.isDebugEnabled()) 38 { 39 log.debug(response.getText()); 40 } 41 42 WebLink[] links = response.getLinks(); 43 assertEquals("Wrong number of links in result.", 1, links.length); 44 45 assertEquals("Link text is wrong.", "/context/dynlink?param=Raja%26Siva", links[0].getURLString()); 46 } 47 48 } | Popular Tags |