KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > logicalcobwebs > proxool > HypersonicTest


1 /*
2  * This software is released under a licence similar to the Apache Software Licence.
3  * See org.logicalcobwebs.proxool.package.html for details.
4  * The latest version is available at http://proxool.sourceforge.net
5  */

6 package org.logicalcobwebs.proxool;
7
8 import org.apache.commons.logging.Log;
9 import org.apache.commons.logging.LogFactory;
10
11 /**
12  * Very basic test to see if Hypersonic test database is working
13  *
14  * @version $Revision: 1.13 $, $Date: 2006/01/18 14:40:06 $
15  * @author Bill Horsman (bill@logicalcobwebs.co.uk)
16  * @author $Author: billhorsman $ (current maintainer)
17  * @since Proxool 0.5
18  */

19 public class HypersonicTest extends AbstractProxoolTest {
20
21     private static final Log LOG = LogFactory.getLog(HypersonicTest.class);
22
23     private static final String JavaDoc TEST_TABLE = "test";
24
25     public HypersonicTest(String JavaDoc s) {
26         super(s);
27     }
28
29     public void testHypersonic() throws Exception JavaDoc {
30
31         String JavaDoc testName = "hypersonic";
32
33         TestHelper.getDirectConnection().close();
34
35     }
36
37 }
38
39 /*
40  Revision history:
41  $Log: HypersonicTest.java,v $
42  Revision 1.13 2006/01/18 14:40:06 billhorsman
43  Unbundled Jakarta's Commons Logging.
44
45  Revision 1.12 2003/03/04 10:24:40 billhorsman
46  removed try blocks around each test
47
48  Revision 1.11 2003/03/03 17:08:57 billhorsman
49  all tests now extend AbstractProxoolTest
50
51  Revision 1.10 2003/03/03 11:12:04 billhorsman
52  fixed licence
53
54  Revision 1.9 2003/03/01 15:27:24 billhorsman
55  checkstyle
56
57  Revision 1.8 2003/02/27 18:01:48 billhorsman
58  completely rethought the test structure. it's now
59  more obvious. no new tests yet though.
60
61  Revision 1.7 2003/02/19 15:14:23 billhorsman
62  fixed copyright (copy and paste error,
63  not copyright change)
64
65  Revision 1.6 2003/02/06 17:41:03 billhorsman
66  now uses imported logging
67
68  Revision 1.5 2002/12/16 17:04:55 billhorsman
69  new test structure
70
71  Revision 1.4 2002/11/09 16:01:38 billhorsman
72  fix doc
73
74  Revision 1.3 2002/11/02 14:22:16 billhorsman
75  Documentation
76
77  Revision 1.2 2002/11/02 13:57:34 billhorsman
78  checkstyle
79
80  Revision 1.1 2002/10/29 23:18:30 billhorsman
81  Tests that hypersonic db works ok
82
83 */

84
Popular Tags