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.java193 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_Match()
209 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_ColumnNotExist()
220 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_TypeMismatch()
231 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_NotNullMismatch()
242 TableStructure table = createOneColumnTable("foo", INTEGER, false, "baz"); in testAssertHasColumn_DefaultMatch()
247 TableStructure table = createOneColumnTable("foo", INTEGER, false, "bar"); in testAssertHasColumn_DefaultMismatch()
258 TableStructure table = createOneColumnTable("foo", INTEGER, false, null); in testAssertHasColumn_DefaultMismatch_Null1()
269 TableStructure table = createOneColumnTable("foo", INTEGER, false, "baz"); in testAssertHasColumn_DefaultMismatch_Null2()
279 private TableStructure createOneColumnTable(String name, String type, boolean notnull, in createOneColumnTable() method in BaseDatabaseHelperUpgradeTest