Module org.testfx

Class MenuItemMatchers


  • public class MenuItemMatchers
    extends Object
    TestFX matchers for MenuItem controls.
    • Method Summary

      Modifier and Type Method Description
      static org.hamcrest.Matcher<javafx.scene.control.MenuItem> hasText​(String text)
      Creates a matcher that matches all MenuItem objects that have the given text as their text in MenuItem.
      static org.hamcrest.Matcher<javafx.scene.control.MenuItem> hasText​(org.hamcrest.Matcher<String> matcher)
      Creates a matcher that matches all MenuItem objects whose text matches the given matcher.
    • Method Detail

      • hasText

        public static org.hamcrest.Matcher<javafx.scene.control.MenuItem> hasText​(String text)
        Creates a matcher that matches all MenuItem objects that have the given text as their text in MenuItem.
        Parameters:
        text - the String 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 all MenuItem objects whose text matches the given matcher.
        Parameters:
        matcher - the Matcher<String> that the MenuItem text should match