Searched refs:retCursor (Results 1 – 1 of 1) sorted by relevance
435 Cursor retCursor = adapter.getGroup(0); in testGetGroup() local436 assertEquals(2, retCursor.getCount()); in testGetGroup()437 assertEquals(GROUP_ONE, retCursor.getString(NAME_INDEX)); in testGetGroup()439 retCursor = adapter.getGroup(1); in testGetGroup()440 assertEquals(GROUP_TWO, retCursor.getString(NAME_INDEX)); in testGetGroup()523 Cursor retCursor = adapter.getChild(0, 0); in testGetChild() local524 assertSame(mChildCursor1, retCursor); in testGetChild()525 assertEquals(CHILD_VALUE_ONE, retCursor.getString(VALUE_INDEX)); in testGetChild()527 retCursor = adapter.getChild(0, 1); in testGetChild()528 assertSame(mChildCursor1, retCursor); in testGetChild()[all …]