Home
last modified time | relevance | path

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

/cts/tests/tests/provider/src/android/provider/cts/
DCalendarTest.java2264 ContentValues badValues = EventHelper.getNewEventValues(account, seed++, calendarId, true); in testEventCreationAndDeletion() local
2265 badValues.remove(Events.CALENDAR_ID); in testEventCreationAndDeletion()
2267 createAndVerifyEvent(account, seed, calendarId, true, badValues); in testEventCreationAndDeletion()
2274 badValues = EventHelper.getNewEventValues(account, seed++, calendarId, false); in testEventCreationAndDeletion()
2275 badValues.remove(Events.EVENT_TIMEZONE); in testEventCreationAndDeletion()
2277 createAndVerifyEvent(account, seed, calendarId, false, badValues); in testEventCreationAndDeletion()
2312 ContentValues badValues = new ContentValues(updateValues); in testEventUpdateAsApp() local
2313 badValues.putNull(Events.EVENT_TIMEZONE); in testEventUpdateAsApp()
2314 badValues.remove(Events.DIRTY); in testEventUpdateAsApp()
2316 mContentResolver.update(eventUri, badValues, null, null); in testEventUpdateAsApp()