01: package test.converter;
02:
03: import junit.framework.TestCase;
04:
05: public class ConverterSample1 extends TestCase {
06: protected void setUp() throws Exception {
07: super .setUp();
08:
09: int classId = 10;
10: String className = "ajay";
11:
12: }
13:
14: protected void tearDown() throws Exception {
15: super .tearDown();
16: }
17:
18: public final void testClassJunit() {
19: int classId = 10;
20: String className = "nspe";
21: }
22:
23: public final void testSetClassId() {
24: int classId = 12;
25: }
26:
27: public final void testSetClassName() {
28: String className = "account";
29: }
30:
31: }
|