1 19 20 package org.netbeans.modules.java.source.parsing; 21 22 import junit.framework.*; 23 import java.io.File ; 24 import java.io.IOException ; 25 import java.util.ArrayList ; 26 import java.util.Iterator ; 27 import java.util.LinkedList ; 28 import java.util.List ; 29 import java.util.Set ; 30 import javax.tools.JavaFileObject; 31 import org.netbeans.modules.java.source.util.Iterators; 32 33 37 public class CachingFileManagerTest extends TestCase { 38 39 public CachingFileManagerTest(String testName) { 40 super(testName); 41 } 42 43 protected void setUp() throws Exception { 44 } 45 46 protected void tearDown() throws Exception { 47 } 48 49 public static Test suite() { 50 TestSuite suite = new TestSuite(CachingFileManagerTest.class); 51 52 return suite; 53 } 54 55 100 } 101 | Popular Tags |