CallLogGroupBuilderTest.java | 313 private void assertGroupIs(int cursorPosition, int size, boolean expanded, GroupSpec group) { 316 assertEquals(expanded, group.expanded); 325 /** Whether the group should be initially expanded. */ 326 public final boolean expanded; field in class:CallLogGroupBuilderTest.GroupSpec 328 public GroupSpec(int cursorPosition, int size, boolean expanded) { 331 this.expanded = expanded; 341 public void addGroup(int cursorPosition, int size, boolean expanded) { 342 groups.add(new GroupSpec(cursorPosition, size, expanded)); [all...] |