Class TextInputControlMatchers
java.lang.Object
org.testfx.matcher.control.TextInputControlMatchers
TestFX matchers for
TextInputControl controls.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.hamcrest.Matcher<javafx.scene.control.TextInputControl> Creates a matcher that matches allTextInputControls that have text equal to the giventext.static org.hamcrest.Matcher<javafx.scene.control.TextInputControl> Creates a matcher that matches allTextInputControls that have text that matches the givenmatcher.
-
Constructor Details
-
TextInputControlMatchers
private TextInputControlMatchers()
-
-
Method Details
-
hasText
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<String> matcher) Creates a matcher that matches allTextInputControls that have text that matches the givenmatcher.- Parameters:
matcher- theMatcher<String>the TextInputControls text should match
-