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

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

*** 27,45 **** --- 27,52 ---- import static com.sun.javafx.test.TestHelper.box; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.junit.Assert.fail; + + import com.sun.javafx.FXUnit; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import org.junit.Before; + import org.junit.Rule; import org.junit.Test; import com.sun.scenario.effect.Blend.Mode; public class BlendTest extends EffectsTestBase { + + @Rule + public FXUnit fx = new FXUnit(); + private Blend effect; @Before public void setUp() { effect = new Blend();