1 // Copyright 2005-2007, FreeHEP.
2 package org.freehep.graphicsio.test;
3
4 import org.freehep.graphicsio.ImageConstants;
5
6
7 /**
8 * @author Mark Donszelmann
9 * @version $Id: GraphicsIOTestSuite.java 10276 2007-01-09 19:24:50Z duns $
10 */
11 public class GraphicsIOTestSuite extends TestSuite {
12
13 public static TestSuite suite() {
14 GraphicsIOTestSuite suite = new GraphicsIOTestSuite();
15 suite.addTests(ImageConstants.BMP);
16 suite.addTests(ImageConstants.GIF);
17 suite.addTests(ImageConstants.JPG);
18 suite.addTests(ImageConstants.PNG);
19 suite.addTests(ImageConstants.WBMP);
20 return suite;
21 }
22
23 }