1 4 package com.openedit.modules.html; 5 6 import junit.framework.Test; 7 import junit.framework.TestSuite; 8 9 13 public class AllTests 14 { 15 16 public static Test suite() 17 { 18 TestSuite suite = new TestSuite("Test for com.openedit.modules.html"); 19 suite.addTestSuite(EditorSessionTest.class); 21 suite.addTestSuite(HtmlEditorModuleTest.class); 22 return suite; 24 } 25 } 26 | Popular Tags |