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 allMenuItemobjects that have the giventextas their text in MenuItem.static org.hamcrest.Matcher<javafx.scene.control.MenuItem> Creates a matcher that matches allMenuItemobjects whose text matches the given matcher.
-
Constructor Details
-
MenuItemMatchers
private MenuItemMatchers()
-
-
Method Details
-
hasText
Creates a matcher that matches allMenuItemobjects that have the giventextas their text in MenuItem.- Parameters:
text- theStringthe 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 allMenuItemobjects whose text matches the given matcher.- Parameters:
matcher- theMatcher<String>that the MenuItem text should match
-