diff options
author | Elliott Hughes <enh@google.com> | 2011-01-09 16:50:57 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2011-01-09 16:50:57 -0800 |
commit | ceacc61d16fe3aec9c805de525a79f547e607a27 (patch) | |
tree | d3646ceda88ca2c78a54e530409e2d414a532f4d /luni/src/test/java/tests/SQLite/StmtTest.java | |
parent | 38e90abbe4ec0a889cb16dc673cf892274c18a01 (diff) | |
download | libcore-ceacc61d16fe3aec9c805de525a79f547e607a27.zip libcore-ceacc61d16fe3aec9c805de525a79f547e607a27.tar.gz libcore-ceacc61d16fe3aec9c805de525a79f547e607a27.tar.bz2 |
Remove useless no-op tests.
(Or sometimes just useless annotations. Basically, this gets rid of every
reference to dalvik.annotation.TestLevel.NOT_FEASIBLE, except the definition.)
Change-Id: Ie3c1d9240f85a6237311b9282b3bc181f8af8120
Diffstat (limited to 'luni/src/test/java/tests/SQLite/StmtTest.java')
-rw-r--r-- | luni/src/test/java/tests/SQLite/StmtTest.java | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/luni/src/test/java/tests/SQLite/StmtTest.java b/luni/src/test/java/tests/SQLite/StmtTest.java index 1dc8552..d512325 100644 --- a/luni/src/test/java/tests/SQLite/StmtTest.java +++ b/luni/src/test/java/tests/SQLite/StmtTest.java @@ -149,19 +149,6 @@ public class StmtTest extends SQLiteTest { } /** - * @tests {@link Stmt#finalize()} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "method test", - method = "finalize", - args = {} - ) - public void testFinalize() { - - } - - /** * @tests {@link Stmt#prepare()} */ @TestTargetNew( @@ -639,15 +626,6 @@ public class StmtTest extends SQLiteTest { } - /** - * @tests {@link Stmt#bind_zeroblob(int, int)} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "not supported", - method = "bind_zeroblob", - args = {int.class, int.class} - ) public void testBind_zeroblob() { try { st.bind_zeroblob(1, 128); @@ -917,16 +895,6 @@ public class StmtTest extends SQLiteTest { } - /** - * @throws Exception - * @tests {@link Stmt#column_bytes(int)} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "not supported", - method = "column_bytes", - args = {int.class} - ) public void testColumn_bytes() throws Exception { db.exec("create table B(id integer primary key, val blob)",null); @@ -1126,15 +1094,6 @@ public class StmtTest extends SQLiteTest { } } - /** - * @tests {@link Stmt#column_table_name(int)} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "not supported", - method = "column_table_name", - args = {int.class} - ) public void testColumn_table_name() { try { st = db.prepare("select * from " + DatabaseCreator.SIMPLE_TABLE1); @@ -1145,15 +1104,6 @@ public class StmtTest extends SQLiteTest { } } - /** - * @tests {@link Stmt#column_database_name(int)} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "not supported", - method = "column_database_name", - args = {int.class} - ) public void testColumn_database_name() { try { st = db.prepare("insert into " + DatabaseCreator.SIMPLE_TABLE1 @@ -1229,15 +1179,6 @@ public class StmtTest extends SQLiteTest { .column_decltype(29))); } - /** - * @tests {@link Stmt#column_origin_name(int)} - */ - @TestTargetNew( - level = TestLevel.NOT_FEASIBLE, - notes = "not supported", - method = "column_origin_name", - args = {int.class} - ) public void testColumn_origin_name() { try { st = db.prepare("select * from " + DatabaseCreator.SIMPLE_TABLE1); |