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