1 17 18 19 20 package org.apache.fop.render.rtf; 21 22 import junit.framework.Test; 23 import junit.framework.TestSuite; 24 25 28 public class RichTextFormatTestSuite { 29 30 34 public static Test suite() { 35 TestSuite suite = new TestSuite( 36 "Test suite for RTF library"); 37 suite.addTest(new TestSuite(Bug39607TestCase.class)); 39 return suite; 41 } 42 } 43 | Popular Tags |