Package org.testfx.matcher.control
Class TextInputControlMatchers
- java.lang.Object
-
- org.testfx.matcher.control.TextInputControlMatchers
-
public class TextInputControlMatchers extends java.lang.ObjectTestFX matchers forTextInputControlcontrols.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateTextInputControlMatchers()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.hamcrest.Matcher<javafx.scene.control.TextInputControl>hasText(java.lang.String text)Creates a matcher that matches allTextInputControls that have text equal to the giventext.static org.hamcrest.Matcher<javafx.scene.control.TextInputControl>hasText(org.hamcrest.Matcher<java.lang.String> matcher)Creates a matcher that matches allTextInputControls that have text that matches the givenmatcher.
-
-
-
Method Detail
-
hasText
public static org.hamcrest.Matcher<javafx.scene.control.TextInputControl> hasText(java.lang.String text)
Creates a matcher that matches allTextInputControls that have text equal to the giventext.- Parameters:
text- theStringthe matched TextInputControls should have as their text
-
hasText
public static org.hamcrest.Matcher<javafx.scene.control.TextInputControl> hasText(org.hamcrest.Matcher<java.lang.String> matcher)
Creates a matcher that matches allTextInputControls that have text that matches the givenmatcher.- Parameters:
matcher- theMatcher<String>the TextInputControls text should match
-
-