1 52 53 package freemarker.testcase; 54 55 import freemarker.template.SimpleScalar; 56 57 62 public class TestInclude extends AbstractTestCase { 63 64 public TestInclude(String aTestname) { 65 super( aTestname ); 66 } 67 68 71 public void setUp() { 72 setUpFiles( "test-include.html" ); 73 root.put("message", new SimpleScalar("Hello, world!")); 74 75 } 76 77 79 public static void main( String [] argc ) throws Exception { 80 AbstractTestCase cTest = new TestInclude( "test-include.html" ); 81 cTest.run(); 82 } 83 } | Popular Tags |