// Copyright 2005, FreeHEP. package org.freehep.graphicsio.ps.test; import org.freehep.graphicsio.test.TestSuite; /** * @author Mark Donszelmann * @version $Id: PSTestSuite.java 12753 2007-06-12 22:32:31Z duns $ */ public class PSTestSuite extends TestSuite { /* protected void addTests(String category, String fmt, String dir, String ext, boolean compare, Properties properties) { super.addTests(category, fmt, dir, ext, compare, properties); addTest(new TestCase( "org.freehep.graphicsio.ps.test.PSTestPreviewThumbnail", category, fmt, dir, ext, compare, null)); } */ public static TestSuite suite() { PSTestSuite suite = new PSTestSuite(); suite.addTests("PS"); return suite; } }