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

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

*** 24,41 **** --- 24,48 ---- */ package javafx.scene.effect; import static org.junit.Assert.assertEquals; + + 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.scenario.effect.Color4f; public class PointLightTest extends LightTestBase { + + @Rule + public FXUnit fx = new FXUnit(); + private Light.Point effect; @Before public void setUp() { effect = new Light.Point();