1 5 package com.opensymphony.oscache.plugins.clustersupport; 6 7 import junit.framework.Test; 8 import junit.framework.TestCase; 9 import junit.framework.TestSuite; 10 11 17 public final class TestCompleteClustering extends TestCase { 18 21 public TestCompleteClustering(String str) { 22 super(str); 23 } 24 25 30 public static void main(String [] args) { 31 junit.swingui.TestRunner testRunner = new junit.swingui.TestRunner(); 33 testRunner.setLoading(false); 34 35 String [] args2 = {TestCompleteClustering.class.getName()}; 36 testRunner.start(args2); 37 } 38 39 44 public static Test suite() { 45 TestSuite suite = new TestSuite("Test all OSCache clustering"); 47 suite.addTest(TestJavaGroupsBroadcastingListener.suite()); 48 suite.addTest(TestJMSBroadcastingListener.suite()); 49 suite.addTest(TestJMS10BroadcastingListener.suite()); 50 51 return suite; 52 } 53 } 54 | Popular Tags |