1 package test.converter;
2 
3 import junit.framework.TestCase;
4 
5 
6 public class ConverterSample1 extends TestCase {
7     @Override
setUp()8     protected void setUp() throws Exception {
9         super.setUp();
10 
11     }
12 
13     @Override
tearDown()14     protected void tearDown() throws Exception {
15         super.tearDown();
16     }
17 
testClassJunit()18     public final void testClassJunit() {
19     }
20 
21 
testSetClassId()22     public final void testSetClassId() {
23     }
24 
testSetClassName()25     public final void testSetClassName() {
26     }
27 
28 }
29