1 52 53 package freemarker.testcase; 54 55 import freemarker.template.SimpleScalar; 56 57 62 public class TestComment extends AbstractTestCase { 63 64 public TestComment( String aTestname ) { 65 super( aTestname ); 66 } 67 68 71 public void setUp() { 72 setUpFiles( "test-comment.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 TestComment( "test-comment.html" ); 81 cTest.run(); 82 } 83 } 84 | Popular Tags |