1 //==============================================================================
2 // file : JDOTestTest.java
3 // project: East Networks News System
4 //
5 // last change: date: $Date: 2003/09/10 09:28:37 $
6 // by: $Author: bitiboy $
7 // revision: $Revision: 1.1 $
8 //------------------------------------------------------------------------------
9 // copyright: GNU GPL Software License (see class documentation)
10 //==============================================================================
11 package net.eastol.news.test;
12
13 import com.justhis.util.exception.PropertiesFileReadException;
14
15 import junit.framework.TestCase;
16
17 import java.io.FileNotFoundException;
18 import java.io.IOException;
19
20
21 /*
22 * TODO
23 * @author <a href="http://blog.ejb.cn">acai</a>
24 *
25 * @version $Revision: 1.1 $
26 */
27 public class JDOTestTest extends TestCase {
28 //~ Constructors -----------------------------------------------------------
29
30 /***
31 * Constructor for JDOTestTest.
32 *
33 * @param arg0
34 */
35 public JDOTestTest(String arg0) {
36 super(arg0);
37 }
38
39 //~ Methods ----------------------------------------------------------------
40
41 /***
42 * TODO
43 *
44 * @throws FileNotFoundException TODO
45 * @throws IOException TODO
46 * @throws PropertiesFileReadException TODO
47 */
48 public void testWriteClass()
49 throws FileNotFoundException, IOException,
50 PropertiesFileReadException {
51 JDOTest test = new JDOTest();
52 test.writeClass();
53 }
54 }
55
56
57 /*
58 * $Log: JDOTestTest.java,v $
59 * Revision 1.1 2003/09/10 09:28:37 bitiboy
60 * *** empty log message ***
61 *
62 *
63 */
This page was automatically generated by Maven