modules/graphics/src/test/java/javafx/scene/effect/MotionBlurTest.java

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

@@ -25,14 +25,20 @@
 
 package javafx.scene.effect;
 
 import static org.junit.Assert.assertEquals;
 
+import com.sun.javafx.FXUnit;
 import org.junit.Before;
+import org.junit.Rule;
 import org.junit.Test;
 
 public class MotionBlurTest extends EffectsTestBase {
+
+    @Rule
+    public FXUnit fx = new FXUnit();
+
     private MotionBlur effect;
 
     @Before
     public void setUp() {
         effect = new MotionBlur();