modules/graphics/src/test/java/javafx/scene/shape/CubicCurveTest.java

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


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.shape;
  27 

  28 import com.sun.javafx.sg.prism.NGCubicCurve;
  29 import com.sun.javafx.sg.prism.NGNode;
  30 import javafx.scene.NodeTest;

  31 import org.junit.Test;
  32 
  33 import static org.junit.Assert.*;
  34 
  35 public class CubicCurveTest {
  36 



  37     @Test
  38     public void testFullConstructor() {
  39         final CubicCurve curve = new StubCubicCurve(1, 2, 3, 4, 5, 6, 7, 8);
  40         assertEquals(1, curve.getStartX(), 0.00001);
  41         assertEquals(2, curve.getStartY(), 0.00001);
  42         assertEquals(3, curve.getControlX1(), 0.00001);
  43         assertEquals(4, curve.getControlY1(), 0.00001);
  44         assertEquals(5, curve.getControlX2(), 0.00001);
  45         assertEquals(6, curve.getControlY2(), 0.00001);
  46         assertEquals(7, curve.getEndX(), 0.00001);
  47         assertEquals(8, curve.getEndY(), 0.00001);
  48     }
  49 
  50     @Test
  51     public void testPropertyPropagation_visible() throws Exception {
  52         final CubicCurve node = new StubCubicCurve();
  53         NodeTest.testBooleanPropertyPropagation(node, "visible", false, true);
  54     }
  55 
  56     @Test




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.shape;
  27 
  28 import com.sun.javafx.FXUnit;
  29 import com.sun.javafx.sg.prism.NGCubicCurve;
  30 import com.sun.javafx.sg.prism.NGNode;
  31 import javafx.scene.NodeTest;
  32 import org.junit.Rule;
  33 import org.junit.Test;
  34 
  35 import static org.junit.Assert.*;
  36 
  37 public class CubicCurveTest {
  38 
  39     @Rule
  40     public FXUnit fx = new FXUnit();
  41 
  42     @Test
  43     public void testFullConstructor() {
  44         final CubicCurve curve = new StubCubicCurve(1, 2, 3, 4, 5, 6, 7, 8);
  45         assertEquals(1, curve.getStartX(), 0.00001);
  46         assertEquals(2, curve.getStartY(), 0.00001);
  47         assertEquals(3, curve.getControlX1(), 0.00001);
  48         assertEquals(4, curve.getControlY1(), 0.00001);
  49         assertEquals(5, curve.getControlX2(), 0.00001);
  50         assertEquals(6, curve.getControlY2(), 0.00001);
  51         assertEquals(7, curve.getEndX(), 0.00001);
  52         assertEquals(8, curve.getEndY(), 0.00001);
  53     }
  54 
  55     @Test
  56     public void testPropertyPropagation_visible() throws Exception {
  57         final CubicCurve node = new StubCubicCurve();
  58         NodeTest.testBooleanPropertyPropagation(node, "visible", false, true);
  59     }
  60 
  61     @Test