Merge "annotate some tests large - just in case they take longer. bug:3066136"

This commit is contained in:
Vasu Nori
2010-10-05 17:08:53 -07:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 2 deletions

View File

@@ -97,7 +97,10 @@ public class SQLiteCursorTest extends AndroidTestCase {
assertTrue(db.isOpen());
}
@SmallTest
/**
* this test could take a while to execute. so, designate it as LargetTest
*/
@LargeTest
public void testFillWindow() {
// create schema
final String testTable = "testV";

View File

@@ -128,7 +128,7 @@ public class SQLiteStatementTest extends AndroidTestCase {
* pre-compiled SQL statement id except in during the period of binding the arguments
* and executing the SQL statement.
*/
@SmallTest
@LargeTest
public void testReferenceToPrecompiledStatementId() {
mDatabase.execSQL("create table t (i int, j text);");
verifyReferenceToPrecompiledStatementId(false);