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

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

*** 25,43 **** --- 25,50 ---- package javafx.scene.effect; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; + + import com.sun.javafx.FXUnit; import javafx.scene.paint.Color; import org.junit.Before; + import org.junit.Rule; import org.junit.Test; import com.sun.javafx.geom.RectBounds; import com.sun.javafx.tk.Toolkit; public class ColorInputTest extends EffectsTestBase { + + @Rule + public FXUnit fx = new FXUnit(); + private ColorInput effect; @Before public void setUp() { effect = new ColorInput();