Beispiel #1
0
  @Test
  public void setSecondRowText_sets_text() {
    String expected = random();

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

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

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

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