Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 28 29 package org.apache.commons.httpclient.cookie; 30 31 import junit.framework.*; 32 33 38 public class TestCookieAll extends TestCase { 39 40 public TestCookieAll(String testName) { 41 super(testName); 42 } 43 44 public static Test suite() { 45 TestSuite suite = new TestSuite(); 46 suite.addTest(TestCookie.suite()); 47 suite.addTest(TestCookie2.suite()); 48 suite.addTest(TestCookieCompatibilitySpec.suite()); 49 suite.addTest(TestCookieRFC2109Spec.suite()); 50 suite.addTest(TestCookieRFC2965Spec.suite()); 51 suite.addTest(TestCookieNetscapeDraft.suite()); 52 suite.addTest(TestCookieIgnoreSpec.suite()); 53 suite.addTest(TestCookiePolicy.suite()); 54 suite.addTest(TestDateParser.suite()); 55 suite.addTest(TestCookiePathComparator.suite()); 56 suite.addTest(TestCookieVersionSupport.suite()); 57 return suite; 58 } 59 60 public static void main(String args[]) { 61 String [] testCaseName = { TestCookieAll.class.getName() }; 62 junit.textui.TestRunner.main(testCaseName); 63 } 64 65 } 66
| Popular Tags
|