blob: f52245063527735701240ec19053beb7ca7ed88b [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package tests.sql;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetClass;
import dalvik.annotation.TestTargetNew;
import junit.framework.TestCase;
import java.sql.ParameterMetaData;
/**
*
*/
@TestTargetClass(ParameterMetaData.class)
public class ParameterMetaDataTest extends TestCase {
/**
* Test method for {@link java.sql.ParameterMetaData#getParameterClassName(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getParameterClassName",
args = {int.class}
)
public void testGetParameterClassName() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getParameterCount()}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getParameterCount",
args = {}
)
public void testGetParameterCount() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getParameterMode(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getParameterMode",
args = {int.class}
)
public void testGetParameterMode() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getParameterType(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getParameterType",
args = {int.class}
)
public void testGetParameterType() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getParameterTypeName(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getParameterTypeName",
args = {int.class}
)
public void testGetParameterTypeName() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getPrecision(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getPrecision",
args = {int.class}
)
public void testGetPrecision() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#getScale(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "getScale",
args = {int.class}
)
public void testGetScale() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#isNullable(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "isNullable",
args = {int.class}
)
public void testIsNullable() {
fail("Not yet implemented");
}
/**
* Test method for {@link java.sql.ParameterMetaData#isSigned(int)}.
*/
@TestTargetNew(
level = TestLevel.NOT_FEASIBLE,
notes = "",
method = "isSigned",
args = {int.class}
)
public void testIsSigned() {
fail("Not yet implemented");
}
}