modules/graphics/src/test/java/javafx/scene/input/ZoomEventTest.java

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

*** 23,46 **** --- 23,51 ---- * questions. */ package javafx.scene.input; + import com.sun.javafx.FXUnit; import com.sun.javafx.pgstub.StubScene; import com.sun.javafx.test.MouseEventGenerator; import javafx.event.Event; import javafx.event.EventHandler; import javafx.geometry.Point3D; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.shape.Rectangle; import javafx.stage.Stage; + import org.junit.Rule; import org.junit.Test; import static org.junit.Assert.*; public class ZoomEventTest { + @Rule + public FXUnit fx = new FXUnit(); + private boolean zoomed; private boolean zoomed2; private PickResult pickRes; @Test public void testShortConstructor() {