| Home >> All >> com >> arranger >> jarl >> [ test Javadoc ] |
Source code: com/arranger/jarl/test/JarlTester.java
1 package com.arranger.jarl.test; 2 3 import com.arranger.jarl.Jarl; 4 import junit.framework.TestCase; 5 6 /** 7 * JarlTester created on Feb 20, 2003 8 */ 9 public class JarlTester extends TestCase { 10 11 public void testJarl() throws Exception { 12 Jarl jarl = new Jarl(); 13 jarl.init("src/com/arranger/jarl/test/" + System.getProperty("jarlconfig")); 14 jarl.render("output", "image"); 15 } 16 }