1 6 21 22 package de.schlichtherle.io; 23 24 import junit.framework.*; 25 26 32 public class RandomDataZip32Test extends FileTestBase { 33 34 public static Test suite() throws Exception { 35 TestSuite suite = new TestSuite(RandomDataZip32Test.class); 36 38 39 return suite; 40 } 41 42 45 public RandomDataZip32Test(String testName) { 46 super(testName); 47 } 48 49 protected void setUp() throws Exception { 50 suffix = ".zip"; 51 File.setDefaultArchiveDetector(new DefaultArchiveDetector("zip")); 52 53 super.setUp(); 54 } 55 } 56 | Popular Tags |