KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > classfile > ConstantPoolTest


1 /*
2  * ConstantPoolTest.java
3  * JUnit based test
4  *
5  * Created on September 13, 2004, 4:07 PM
6  */

7
8 package org.netbeans.modules.classfile;
9
10 import junit.framework.*;
11
12 /**
13  *
14  * @author tball
15  */

16 public class ConstantPoolTest extends TestCase {
17     
18     public ConstantPoolTest(String JavaDoc testName) {
19         super(testName);
20     }
21     
22     public void testGet() {
23     }
24
25     public void testGetClass() {
26     }
27
28     public void testGetAllConstants() {
29     }
30
31     public void testGetAllClassNames() {
32     }
33 }
34
Popular Tags