1 // Copyright 2005, FreeHEP.
2 package org.freehep.graphicsio.swf.test;
3
4 import org.freehep.graphicsio.test.TestSuite;
5
6 /**
7 * @author Mark Donszelmann
8 * @version $Id: SWFTestSuite.java 9198 2006-10-20 22:37:10Z duns $
9 */
10 public class SWFTestSuite extends TestSuite {
11
12 public static TestSuite suite() {
13 SWFTestSuite suite = new SWFTestSuite();
14 suite.addTests("SWF");
15 return suite;
16 }
17
18 public static void main(String[] args) {
19 new junit.textui.TestRunner().doRun(suite());
20 }
21
22 }