KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > java > source > parsing > CachingFileManagerTest


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.java.source.parsing;
21
22 import junit.framework.*;
23 import java.io.File JavaDoc;
24 import java.io.IOException JavaDoc;
25 import java.util.ArrayList JavaDoc;
26 import java.util.Iterator JavaDoc;
27 import java.util.LinkedList JavaDoc;
28 import java.util.List JavaDoc;
29 import java.util.Set JavaDoc;
30 import javax.tools.JavaFileObject;
31 import org.netbeans.modules.java.source.util.Iterators;
32
33 /**
34  *
35  * @author Petr Hrebejk
36  */

37 public class CachingFileManagerTest extends TestCase {
38
39     public CachingFileManagerTest(String JavaDoc testName) {
40         super(testName);
41     }
42
43     protected void setUp() throws Exception JavaDoc {
44     }
45
46     protected void tearDown() throws Exception JavaDoc {
47     }
48
49     public static Test suite() {
50         TestSuite suite = new TestSuite(CachingFileManagerTest.class);
51         
52         return suite;
53     }
54
55     /*
56     public void testList() {
57         // TODO add your test code below by replacing the default call to fail.
58         fail("The test case is empty.");
59     }
60
61     public void testGetFileForInput() {
62         // TODO add your test code below by replacing the default call to fail.
63         fail("The test case is empty.");
64     }
65
66     public void testGetFileForOutput() throws Exception {
67         // TODO add your test code below by replacing the default call to fail.
68         fail("The test case is empty.");
69     }
70
71     public void testSetLocation() {
72         // TODO add your test code below by replacing the default call to fail.
73         fail("The test case is empty.");
74     }
75
76     public void testFlush() throws Exception {
77         fail("The test case is empty.");
78     }
79
80     public void testClose() throws Exception {
81         // TODO add your test code below by replacing the default call to fail.
82         fail("The test case is empty.");
83     }
84
85     public void testGetInputFile() {
86         // TODO add your test code below by replacing the default call to fail.
87         fail("The test case is empty.");
88     }
89
90     public void testIsWritable() {
91         // TODO add your test code below by replacing the default call to fail.
92         fail("The test case is empty.");
93     }
94
95     public void testGetFileObjects() {
96         // TODO add your test code below by replacing the default call to fail.
97         fail("The test case is empty.");
98     }
99     */

100 }
101
Popular Tags