1 22 package test.implementation.notification; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 32 public class NotificationSUITE 33 extends TestSuite 34 { 35 40 public static void main(String [] args) 41 { 42 junit.textui.TestRunner.run(suite()); 43 } 44 45 50 public static Test suite() 51 { 52 TestSuite suite = new TestSuite("JBossMX Specific Notiifcation tests"); 53 54 suite.addTest(new TestSuite(AsynchNotificationBroadcasterSupportTestCase.class)); 55 56 return suite; 57 } 58 } 59 | Popular Tags |