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