Package org.testfx.matcher.control
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 allTextInputControl
s that have text equal to the giventext
.static org.hamcrest.Matcher
<javafx.scene.control.TextInputControl> Creates a matcher that matches allTextInputControl
s that have text that matches the givenmatcher
.
-
Constructor Details
-
TextInputControlMatchers
private TextInputControlMatchers()
-
-
Method Details
-
hasText
Creates a matcher that matches allTextInputControl
s that have text equal to the giventext
.- Parameters:
text
- theString
the 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 allTextInputControl
s that have text that matches the givenmatcher
.- Parameters:
matcher
- theMatcher<String>
the TextInputControls text should match
-