Class ParentMatchers

java.lang.Object
org.testfx.matcher.base.ParentMatchers

public class ParentMatchers extends Object
TestFX matchers for Parent nodes.
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.hamcrest.Matcher<javafx.scene.Parent>
    Creates a matcher that matches all Parents that have at least one child.
    static org.hamcrest.Matcher<javafx.scene.Parent>
    hasChildren(int amount)
    Creates a matcher that matches all Parents that have exactly amount children.

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • hasChild

      public static org.hamcrest.Matcher<javafx.scene.Parent> hasChild()
      Creates a matcher that matches all Parents that have at least one child.
    • hasChildren

      public static org.hamcrest.Matcher<javafx.scene.Parent> hasChildren(int amount)
      Creates a matcher that matches all Parents that have exactly amount children.