1 /*2 * Created on Aug 8, 20063 */4 package com.openedit.modules.update;5 6 import junit.framework.Test;7 import junit.framework.TestSuite;8 9 public class AllTests10 {11 12 public static Test suite()13 {14 TestSuite suite = new TestSuite("Test for com.openedit.modules.update");15 //$JUnit-BEGIN$16 suite.addTestSuite(UpdateTest.class);17 //$JUnit-END$18 return suite;19 }20 21 }22