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