1 // Copyright 2005, FreeHEP.
2 package org.freehep.graphicsio.pdf.test;
3
4 import org.freehep.graphicsio.test.TestSuite;
5
6 /**
7 * @author Mark Donszelmann
8 * @version $Id: PDFTestSuite.java 12753 2007-06-12 22:32:31Z duns $
9 */
10 public class PDFTestSuite extends TestSuite {
11
12 /*
13 protected void addTests(String category, String fmt, String dir, String ext, boolean compare, Properties properties) {
14 super.addTests(category, fmt, dir, ext, compare, properties);
15
16 addTest(new TestCase(
17 "org.freehep.graphicsio.pdf.test.PDFTestPreviewThumbnail", category, fmt,
18 dir, ext, compare, null));
19 addTest(new TestCase(
20 "org.freehep.graphicsio.pdf.test.PDFTestFontType1", category, fmt,
21 dir, ext, compare, null));
22 addTest(new TestCase(
23 "org.freehep.graphicsio.pdf.test.PDFTestFontType3", category, fmt,
24 dir, ext, compare, null));
25 }
26 */
27
28 public static TestSuite suite() {
29 PDFTestSuite suite = new PDFTestSuite();
30 suite.addTests("PDF");
31 return suite;
32 }
33
34 }