1 16 package org.apache.cocoon; 17 18 23 public class FlowscriptRecursiveTestCase 24 extends HtmlUnitTestCase 25 { 26 final String pageurl = "/samples/flow/test/"; 27 28 31 public void testFlowscriptRecursive() 32 throws Exception  33 { 34 loadHtmlPage(pageurl+"factorial?n=5"); 35 assertXPath("html/body/p[1]", "Factorial of 5 is ..."); 36 assertXPath("html/body/p[2]", "120.0"); 37 } 38 } 39 | Popular Tags |