OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / luni / src / test / java / tests / javax / sql / PooledConnectionTest.java
1 package tests.javax.sql;
2
3 import dalvik.annotation.TestLevel;
4 import dalvik.annotation.TestTargetClass;
5 import dalvik.annotation.TestTargetNew;
6
7 import junit.framework.TestCase;
8
9 import javax.sql.ConnectionEventListener;
10 import javax.sql.PooledConnection;
11
12 @TestTargetClass(PooledConnection.class)
13 public class PooledConnectionTest extends TestCase {
14
15     /**
16      * @tests {@link javax.sql.PooledConnection#addConnectionEventListener(javax.sql.ConnectionEventListener)}
17      */
18     @TestTargetNew(
19         level = TestLevel.NOT_FEASIBLE,
20         notes = "",
21         method = "addConnectionEventListener",
22         args = {javax.sql.ConnectionEventListener.class}
23     )
24     public void testAddConnectionEventListener() {
25         fail("Not yet implemented");
26     }
27
28     /**
29      * @tests {@link javax.sql.PooledConnection#close()}
30      */
31     @TestTargetNew(
32         level = TestLevel.NOT_FEASIBLE,
33         notes = "",
34         method = "close",
35         args = {}
36     )
37     public void testClose() {
38         fail("Not yet implemented");
39     }
40
41     /**
42      * @tests {@link javax.sql.PooledConnection#getConnection()}
43      */
44     @TestTargetNew(
45         level = TestLevel.NOT_FEASIBLE,
46         notes = "",
47         method = "getConnection",
48         args = {}
49     )
50     public void testGetConnection() {
51         fail("Not yet implemented");
52     }
53
54
55     /**
56      * @tests {@link javax.sql.PooledConnection#removeConnectionEventListener(ConnectionEventListener)}
57      */
58     @TestTargetNew(
59         level = TestLevel.NOT_FEASIBLE,
60         notes = "",
61         method = "removeConnectionEventListener",
62         args = {javax.sql.ConnectionEventListener.class}
63     )
64     public void testRemoveConnectionEventListener() {
65         fail("Not yet implemented");
66     }
67
68 }