| Home >> All >> com >> arranger >> jarl >> [ test Javadoc ] |
Source code: com/arranger/jarl/test/AntTest.java
1 package com.arranger.jarl.test; 2 3 import junit.framework.TestCase; 4 import org.apache.tools.ant.Main; 5 6 /** 7 * AntTest created on Mar 14, 2003 8 */ 9 public class AntTest extends TestCase { 10 11 public AntTest() { 12 } 13 14 public void testAnt() throws Exception { 15 Main.main(new String[0]); 16 } 17 18 public void testDoclet() throws Exception { 19 Main.main(new String[]{"doclet"}); 20 } 21 }