1 17 18 19 20 package org.apache.fop; 21 22 import junit.framework.Test; 23 import junit.framework.TestSuite; 24 25 28 public class BasicDriverTestSuite { 29 30 34 public static Test suite() { 35 TestSuite suite = new TestSuite( 36 "Basic functionality test suite for FOP's Driver API"); 37 suite.addTest(new TestSuite(BasicDriverTestCase.class)); 39 return suite; 41 } 42 } 43 | Popular Tags |