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 |
---|---|
JCheckBoxFixture |
JCheckBoxFixture.check()
Checks (or selects) this fixture's
only it is not already checked. |
JCheckBoxFixture |
ContainerFixture.checkBox()
|
JCheckBoxFixture |
ComponentContainerFixture.checkBox()
|
JCheckBoxFixture |
ContainerFixture.checkBox(GenericTypeMatcher<? extends JCheckBox> matcher)
|
JCheckBoxFixture |
ComponentContainerFixture.checkBox(GenericTypeMatcher<? extends JCheckBox> matcher)
|
JCheckBoxFixture |
ContainerFixture.checkBox(String name)
|
JCheckBoxFixture |
ComponentContainerFixture.checkBox(String name)
|
JCheckBoxFixture |
JCheckBoxFixture.click()
Simulates a user clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.click(MouseButton button)
Simulates a user clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.click(MouseClickInfo mouseClickInfo)
Simulates a user clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.doubleClick()
Simulates a user double-clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.focus()
Gives input focus to this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.pressAndReleaseKey(KeyPressInfo keyPressInfo)
Simulates a user pressing given key with the given modifiers on this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.pressAndReleaseKeys(int... keyCodes)
Simulates a user pressing and releasing the given keys on this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.pressKey(int keyCode)
Simulates a user pressing the given key on this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.releaseKey(int keyCode)
Simulates a user releasing the given key on this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.requireDisabled()
Asserts that this fixture's
is disabled. |
JCheckBoxFixture |
JCheckBoxFixture.requireEnabled()
Asserts that this fixture's
is enabled. |
JCheckBoxFixture |
JCheckBoxFixture.requireEnabled(Timeout timeout)
Asserts that this fixture's
is enabled. |
JCheckBoxFixture |
JCheckBoxFixture.requireFocused()
Asserts that this fixture's
has input focus. |
JCheckBoxFixture |
JCheckBoxFixture.requireNotSelected()
Verifies that this fixture's
is not selected. |
JCheckBoxFixture |
JCheckBoxFixture.requireNotVisible()
Asserts that this fixture's
is not visible. |
JCheckBoxFixture |
JCheckBoxFixture.requireSelected()
Verifies that this fixture's
is selected. |
JCheckBoxFixture |
JCheckBoxFixture.requireText(Pattern pattern)
Asserts that the text of this fixture's
matches the given regular expression pattern. |
JCheckBoxFixture |
JCheckBoxFixture.requireText(String expected)
Asserts that the text of this fixture's
is equal to or matches the specified
String . |
JCheckBoxFixture |
JCheckBoxFixture.requireToolTip(Pattern pattern)
Asserts that the toolTip in this fixture's
matches the given regular expression
pattern. |
JCheckBoxFixture |
JCheckBoxFixture.requireToolTip(String expected)
Asserts that the toolTip in this fixture's
matches the given value. |
JCheckBoxFixture |
JCheckBoxFixture.requireVisible()
Asserts that this fixture's
is visible. |
JCheckBoxFixture |
JCheckBoxFixture.rightClick()
Simulates a user right-clicking this fixture's
. |
JCheckBoxFixture |
JCheckBoxFixture.uncheck()
Unchecks this fixture's
only if it is checked. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.