1 25 26 package org.objectweb.jonas.jonasadmin.test.template; 27 28 import org.objectweb.jonas.jonasadmin.test.util.JonasAdminTestCase; 29 30 import com.meterware.httpunit.WebConversation; 31 32 import junit.framework.Test; 33 import junit.framework.TestSuite; 34 35 41 public class C_JonasAdminTemplate extends JonasAdminTestCase { 42 43 47 public C_JonasAdminTemplate(String name) { 48 super(name); 49 } 50 51 57 public static Test suite(WebConversation wc) { 58 TestSuite suite = new TestSuite(); 59 63 suite.addTest(F_JonasAdminTemplate.suite(wc)); 64 65 return suite; 66 } 67 68 72 public static void main (String [] args) { 73 WebConversation wc = new WebConversation(); 74 junit.textui.TestRunner.run(suite(wc)); 75 } 76 } 77 | Popular Tags |