|
|
@ -25,12 +25,12 @@ public class ConversationAdapterTest extends BaseUnitTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testGetItemIdEquals() throws Exception {
|
|
|
|
public void testGetItemIdEquals() throws Exception {
|
|
|
|
when(cursor.getString(anyInt())).thenReturn("SMS::1::1");
|
|
|
|
when(cursor.getString(anyInt())).thenReturn(null).thenReturn("SMS::1::1");
|
|
|
|
long firstId = adapter.getItemId(cursor);
|
|
|
|
long firstId = adapter.getItemId(cursor);
|
|
|
|
when(cursor.getString(anyInt())).thenReturn("MMS::1::1");
|
|
|
|
when(cursor.getString(anyInt())).thenReturn(null).thenReturn("MMS::1::1");
|
|
|
|
long secondId = adapter.getItemId(cursor);
|
|
|
|
long secondId = adapter.getItemId(cursor);
|
|
|
|
assertNotEquals(firstId, secondId);
|
|
|
|
assertNotEquals(firstId, secondId);
|
|
|
|
when(cursor.getString(anyInt())).thenReturn("MMS::2::1");
|
|
|
|
when(cursor.getString(anyInt())).thenReturn(null).thenReturn("MMS::2::1");
|
|
|
|
long thirdId = adapter.getItemId(cursor);
|
|
|
|
long thirdId = adapter.getItemId(cursor);
|
|
|
|
assertNotEquals(secondId, thirdId);
|
|
|
|
assertNotEquals(secondId, thirdId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|