Ejemplo n.º 1
0
  @Test
  public void setSecondRowText_sets_text() {
    String expected = random();

    testObject.apply(new IXListCell.Config("???", expected, null));

    assertEquals("???" + expected, testObject.getText());
  }
Ejemplo n.º 2
0
  @Test
  public void setFirstRowText_sets_text() {
    String expected = random();

    testObject.apply(new IXListCell.Config(expected));

    assertEquals(expected, testObject.getText());
  }