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 Displ004Test extends DisplaytagCase 17 { 18 19 22 public String getJspName() 23 { 24 return "DISPL-004.jsp"; 25 } 26 27 32 public void doTest(String jspName) throws Exception 33 { 34 WebRequest request = new GetMethodWebRequest(jspName); 35 WebResponse response = runner.getResponse(request); 36 37 WebTable[] tables = response.getTables(); 38 assertEquals("Expected 1 table in result.", 1, tables.length); 39 assertEquals("Wrong title in column", "\"the link\" is here", tables[0].getTableCell(1, 0).getTitle()); 40 } 41 42 } | Popular Tags |