1 16 package org.apache.cocoon; 17 18 22 public class XslTalTestCase 23 extends HtmlUnitTestCase 24 { 25 static final String pageurl = "/samples/blocks/xsltal/plain/testdoc.html"; 26 27 public void testXslTalTestDoc() 28 throws Exception 29 { 30 loadHtmlPage(pageurl); 31 32 final String pageTitle = "This is the XSLTAL test document"; 33 assertXPath("/html/head/title", pageTitle); 34 assertXPath("/html/body/div[1]/@class", "content"); 35 assertXPath("/html/body/h1[1]", pageTitle); 36 assertXPath("/html/body/p[1]", "First paragraph of the test document."); 37 assertXPath("/html/body/p[2]", "Second paragraph of the test document."); 38 } 39 } 40 | Popular Tags |