@Test public void testRadGradCenterFull() { this.runTest("2300", new RadialGradient(0, 0, 0.8, 0.8, 0)); }
@Test public void testRadGradCenterEdge() { this.runTest("2301", new RadialGradient(0, 0, 0.707, 0.707, 0)); }
@Test public void testRadGradUpperLeft() { this.runTest("2302", new RadialGradient(-1, -1, 0.8, 0.8, 0)); }
@Test public void testRadGradUpperRight() { this.runTest("2303", new RadialGradient(1, -1, 0.8, 0.8, 0)); }
@Test public void testRadGradBottomRight() { this.runTest("2304", new RadialGradient(1, 1, 0.8, 0.8, 0)); }
@Test public void testRadGradBottomLeft() { this.runTest("2305", new RadialGradient(-1, 1, 0.8, 0.8, 0)); }