Examples of selectedItemOf()


Examples of org.fest.swing.driver.JComboBoxDriver.selectedItemOf()

  @Test
  public void should_return_selection_using_driver() {
    JComboBoxDriver driver = fixture.driver();
    JComboBox target = fixture.target();
    when(driver.selectedItemOf(target)).thenReturn("Six");
    assertThat(fixture.selectedItem()).isEqualTo("Six");
    verify(driver).selectedItemOf(target);
  }

  @Test
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.