Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/base/
DRootInfoTest.java38 RootInfo rootInfo2 = new RootInfo(); in testEquals_sameUser() local
39 rootInfo2.userId = UserId.of(100); in testEquals_sameUser()
40 rootInfo2.authority = "authority"; in testEquals_sameUser()
41 rootInfo2.rootId = "root"; in testEquals_sameUser()
43 assertThat(rootInfo).isEqualTo(rootInfo2); in testEquals_sameUser()
53 RootInfo rootInfo2 = new RootInfo(); in testNotEquals_differentUser() local
54 rootInfo2.userId = UserId.of(101); in testNotEquals_differentUser()
55 rootInfo2.authority = "authority"; in testNotEquals_differentUser()
56 rootInfo2.rootId = "root"; in testNotEquals_differentUser()
58 assertThat(rootInfo).isNotEqualTo(rootInfo2); in testNotEquals_differentUser()