1 5 package com.opensymphony.oscache.general; 6 7 import junit.framework.Test; 8 import junit.framework.TestCase; 9 import junit.framework.TestSuite; 10 11 19 public final class TestCompleteGeneral extends TestCase { 20 23 public TestCompleteGeneral(String str) { 24 super(str); 25 } 26 27 32 public static void main(String [] args) { 33 junit.swingui.TestRunner testRunner = new junit.swingui.TestRunner(); 35 testRunner.setLoading(false); 36 37 String [] args2 = {TestCompleteGeneral.class.getName()}; 38 testRunner.start(args2); 39 } 40 41 46 public static Test suite() { 47 TestSuite suite = new TestSuite("Test all General cache package"); 49 suite.addTest(TestGeneralCacheAdministrator.suite()); 50 51 return suite; 52 } 53 } 54 | Popular Tags |