Skip to content

Instantly share code, notes, and snippets.

@CesarValiente
Created February 9, 2019 09:29
Show Gist options
  • Save CesarValiente/961b0ec2b3de0ae11bfb13d5771764e4 to your computer and use it in GitHub Desktop.
Save CesarValiente/961b0ec2b3de0ae11bfb13d5771764e4 to your computer and use it in GitHub Desktop.
@Test
fun should_query_by_localId_correctly() {
val item = createPersistenceItem(1)
item.insertOrUpdate(db)
val managedItem = db.queryByLocalId(item.localId)
assertThat(managedItem, iz(notNullValue()))
managedItem!!.assertIsEqualsTo(item)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment