Package | Description |
---|---|
org.fest.swing.fixture |
The power and flexibility of FEST-Swing come from the fixtures in
this package.
|
Modifier and Type | Method and Description |
---|---|
JComboBoxFixture |
JComboBoxFixture.cellReader(JComboBoxCellReader cellReader)
Updates the implementation of
to use when comparing internal values
of this fixture's and the values expected in a test. |
JComboBoxFixture |
JComboBoxFixture.clearSelection()
Clears the selection in this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.click()
Simulates a user clicking this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JComboBoxFixture |
ComponentContainerFixture.comboBox()
|
JComboBoxFixture |
ContainerFixture.comboBox()
|
JComboBoxFixture |
ComponentContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
|
JComboBoxFixture |
ContainerFixture.comboBox(GenericTypeMatcher<? extends JComboBox> matcher)
|
JComboBoxFixture |
ComponentContainerFixture.comboBox(String name)
|
JComboBoxFixture |
ContainerFixture.comboBox(String name)
|
JComboBoxFixture |
JComboBoxFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.enterText(String text)
Simulates a user entering the specified text in this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.focus()
Gives input focus to this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.replaceText(String text)
Simulates a user entering the specified text in the
, replacing any text. |
JComboBoxFixture |
JComboBoxFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
JComboBoxFixture |
JComboBoxFixture.requireEditable()
Asserts that this fixture's
is editable. |
JComboBoxFixture |
JComboBoxFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
JComboBoxFixture |
JComboBoxFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
JComboBoxFixture |
JComboBoxFixture.requireFocused()
Asserts that this fixture's
has input focus. |
JComboBoxFixture |
JComboBoxFixture.requireItemCount(int expected)
Verifies that this fixture's
has the expected number of items |
JComboBoxFixture |
JComboBoxFixture.requireNoSelection()
Verifies that this fixture's
does not have any selection. |
JComboBoxFixture |
JComboBoxFixture.requireNotEditable()
Asserts that this fixture's
is not editable. |
JComboBoxFixture |
JComboBoxFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
JComboBoxFixture |
JComboBoxFixture.requireSelection(int index)
Verifies that the index of the selected item in this fixture's
is equal to the given
value. |
JComboBoxFixture |
JComboBoxFixture.requireSelection(Pattern pattern)
Verifies that the
String representation of the selected item in this fixture's
matches the given regular expression pattern. |
JComboBoxFixture |
JComboBoxFixture.requireSelection(String value)
Verifies that the
String representation of the selected item in this fixture's
matches the given text. |
JComboBoxFixture |
JComboBoxFixture.requireToolTip(Pattern pattern)
Asserts that the toolTip in this fixture's
matches the given regular expression
pattern. |
JComboBoxFixture |
JComboBoxFixture.requireToolTip(String expected)
Asserts that the toolTip in this fixture's
matches the given value. |
JComboBoxFixture |
JComboBoxFixture.requireVisible()
Asserts that this fixture's
is visible. |
JComboBoxFixture |
JComboBoxFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.selectAllText()
Simulates a user selecting the text in the
. |
JComboBoxFixture |
JComboBoxFixture.selectItem(int index)
Simulates a user selecting an item in this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.selectItem(Pattern pattern)
Simulates a user selecting an item in this fixture's
. |
JComboBoxFixture |
JComboBoxFixture.selectItem(String text)
Simulates a user selecting an item in this fixture's
. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.