Source code: com/arranger/jarl/test/JarlTest3.java
1 package com.arranger.jarl.test;
2
3 import com.arranger.jarl.Jarl;
4 import junit.framework.TestCase;
5
6 /**
7 * Jarl3 created on Feb 20, 2003
8 */
9 public class JarlTest3 extends TestCase {
10
11 protected static final String SUB_DIR = "output";
12 protected static final String OUTPUT_NAME = "image";
13
14 public void testJarl() throws Exception {
15 Jarl jarl = new Jarl();
16 jarl.init("src/com/arranger/jarl/test/jarl3.xml");
17 jarl.render(SUB_DIR, OUTPUT_NAME);
18 }
19 }