modules/graphics/src/test/java/javafx/scene/shape/ArcTest.java

Print this page
rev 6167 : RT-35330 [Monocle] Remove StubToolkit and replace it with headless glass implementation

*** 23,41 **** --- 23,46 ---- * questions. */ package javafx.scene.shape; + import com.sun.javafx.FXUnit; import com.sun.javafx.sg.prism.NGArc; import com.sun.javafx.sg.prism.NGNode; import javafx.scene.NodeTest; + import org.junit.Rule; import org.junit.Test; import static org.junit.Assert.*; public class ArcTest { + @Rule + public FXUnit fx = new FXUnit(); + @Test public void testPropertyPropagation_visible() throws Exception { final Arc node = new StubArc(); NodeTest.testBooleanPropertyPropagation(node, "visible", false, true); }