1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package tests.sql; 18 19 import dalvik.annotation.TestLevel; 20 import dalvik.annotation.TestTargetClass; 21 import dalvik.annotation.TestTargetNew; 22 23 import junit.framework.TestCase; 24 25 import java.sql.Ref; 26 import java.util.Map; 27 28 /** 29 * @author andrea@google.com (Your Name Here) 30 * 31 */ 32 @TestTargetClass(Ref.class) 33 public class RefTest extends TestCase { 34 35 /** 36 * Test method for {@link java.sql.Ref#getBaseTypeName()}. 37 */ 38 @TestTargetNew( 39 level = TestLevel.NOT_FEASIBLE, 40 notes = "", 41 method = "getBaseTypeName", 42 args = {} 43 ) testGetBaseTypeName()44 public void testGetBaseTypeName() { 45 fail("Not yet implemented"); 46 } 47 48 /** 49 * Test method for {@link java.sql.Ref#getObject()}. 50 */ 51 @TestTargetNew( 52 level = TestLevel.NOT_FEASIBLE, 53 notes = "", 54 method = "getObject", 55 args = {} 56 ) testGetObject()57 public void testGetObject() { 58 fail("Not yet implemented"); 59 } 60 61 /** 62 * Test method for {@link java.sql.Ref#getObject(java.util.Map)}. 63 */ 64 @TestTargetNew( 65 level = TestLevel.NOT_FEASIBLE, 66 notes = "", 67 method = "getObject", 68 args = {Map.class} 69 ) testGetObjectMapOfStringClassOfQ()70 public void testGetObjectMapOfStringClassOfQ() { 71 fail("Not yet implemented"); 72 } 73 74 /** 75 * Test method for {@link java.sql.Ref#setObject(java.lang.Object)}. 76 */ 77 @TestTargetNew( 78 level = TestLevel.NOT_FEASIBLE, 79 notes = "", 80 method = "setObject", 81 args = {Object.class} 82 ) testSetObject()83 public void testSetObject() { 84 fail("Not yet implemented"); 85 } 86 87 } 88