1 25 26 package org.objectweb.jonas.jtests.clients.security; 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 46 suite.addTest(C_AccessControl.suite()); 48 49 suite.addTest(F_RunAs.suite()); 51 52 53 return suite; 54 } 55 56 public static void main (String args[]) { 57 junit.textui.TestRunner.run(suite()); 58 } 59 } 60 | Popular Tags |