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

Change-Id: I89ab0454f592748f971b678a3ae23724eb6fc2e5
This commit is contained in:
Vasu Nori
2010-10-05 16:53:57 -07:00
parent b7e2c783af
commit 790762ca8f
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);