Home
last modified time | relevance | path

Searched refs:createOneColumnTable (Results 1 – 1 of 1) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DBaseDatabaseHelperUpgradeTest.java201 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_Match()
217 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_ColumnNotExist()
228 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_TypeMismatch()
239 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_NotNullMismatch()
250 TableStructure table = createOneColumnTable("foo", INTEGER, false, "baz"); in testAssertHasColumn_DefaultMatch()
255 TableStructure table = createOneColumnTable("foo", INTEGER, false, "bar"); in testAssertHasColumn_DefaultMismatch()
266 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_DefaultMismatch_Null1()
277 TableStructure table = createOneColumnTable("foo", INTEGER, false, "baz"); in testAssertHasColumn_DefaultMismatch_Null2()
287 private TableStructure createOneColumnTable(String name, String type, boolean notnull, in createOneColumnTable() method in BaseDatabaseHelperUpgradeTest