Package org.testfx.matcher.control
Class MenuItemMatchers
java.lang.Object
org.testfx.matcher.control.MenuItemMatchers
TestFX matchers for
MenuItem
controls.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.hamcrest.Matcher
<javafx.scene.control.MenuItem> Creates a matcher that matches allMenuItem
objects that have the giventext
as their text in MenuItem.static org.hamcrest.Matcher
<javafx.scene.control.MenuItem> Creates a matcher that matches allMenuItem
objects whose text matches the given matcher.
-
Constructor Details
-
MenuItemMatchers
private MenuItemMatchers()
-
-
Method Details
-
hasText
Creates a matcher that matches allMenuItem
objects that have the giventext
as their text in MenuItem.- Parameters:
text
- theString
the matched MenuItems should have as their text
-
hasText
public static org.hamcrest.Matcher<javafx.scene.control.MenuItem> hasText(org.hamcrest.Matcher<String> matcher) Creates a matcher that matches allMenuItem
objects whose text matches the given matcher.- Parameters:
matcher
- theMatcher<String>
that the MenuItem text should match
-