1*83a54b2fSSadaf Ebrahimi // Not that this file has no package (that's what we are testing) and therefore, 2*83a54b2fSSadaf Ebrahimi // it is at the wrong location, but it's easier to leave it here. 3*83a54b2fSSadaf Ebrahimi // Also, do not change the line numbers since the test will make sure 4*83a54b2fSSadaf Ebrahimi // that the tags are generated in hardcoded line numbers 5*83a54b2fSSadaf Ebrahimi import junit.framework.TestCase; 6*83a54b2fSSadaf Ebrahimi public class ConverterSample2 extends TestCase { 7*83a54b2fSSadaf Ebrahimi @Override setUp()8*83a54b2fSSadaf Ebrahimi protected void setUp() throws Exception { 9*83a54b2fSSadaf Ebrahimi super.setUp(); 10*83a54b2fSSadaf Ebrahimi 11*83a54b2fSSadaf Ebrahimi } 12*83a54b2fSSadaf Ebrahimi 13*83a54b2fSSadaf Ebrahimi @Override tearDown()14*83a54b2fSSadaf Ebrahimi protected void tearDown() throws Exception { 15*83a54b2fSSadaf Ebrahimi super.tearDown(); 16*83a54b2fSSadaf Ebrahimi } 17*83a54b2fSSadaf Ebrahimi testClassJunit()18*83a54b2fSSadaf Ebrahimi public final void testClassJunit() { 19*83a54b2fSSadaf Ebrahimi } 20*83a54b2fSSadaf Ebrahimi 21*83a54b2fSSadaf Ebrahimi testSetClassId()22*83a54b2fSSadaf Ebrahimi public final void testSetClassId() { 23*83a54b2fSSadaf Ebrahimi } 24*83a54b2fSSadaf Ebrahimi testSetClassName()25*83a54b2fSSadaf Ebrahimi public final void testSetClassName() { 26*83a54b2fSSadaf Ebrahimi } 27*83a54b2fSSadaf Ebrahimi 28*83a54b2fSSadaf Ebrahimi } 29