1 25 26 package org.objectweb.jonas.jtests.clients.jca15; 27 28 import junit.framework.Test; 29 import junit.framework.TestSuite; 30 import org.objectweb.jonas.jtests.util.JTestCase; 31 32 35 public class C_security extends JTestCase { 36 37 public C_security(String name) { 38 super(name); 39 } 40 41 public static Test suite() { 42 TestSuite suite = new TestSuite(); 43 44 suite.addTest(F_securityTest.suite()); 46 47 return suite; 48 } 49 50 public static void main (String args[]) { 51 junit.textui.TestRunner.run(suite()); 52 } 53 } 54 | Popular Tags |