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

Print this page
rev 9250 : 8134762: Refactor Javafx graphics module tests for clear separation of tests
Reviewed-by:


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   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




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   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 test.javafx.scene.shape;
  27 
  28 import com.sun.javafx.sg.prism.NGCubicCurve;
  29 import com.sun.javafx.sg.prism.NGNode;
  30 import test.javafx.scene.NodeTest;
  31 import javafx.scene.shape.CubicCurve;
  32 import org.junit.Test;
  33 
  34 import static org.junit.Assert.*;
  35 
  36 public class CubicCurveTest {
  37 
  38     @Test
  39     public void testFullConstructor() {
  40         final CubicCurve curve = new StubCubicCurve(1, 2, 3, 4, 5, 6, 7, 8);
  41         assertEquals(1, curve.getStartX(), 0.00001);
  42         assertEquals(2, curve.getStartY(), 0.00001);
  43         assertEquals(3, curve.getControlX1(), 0.00001);
  44         assertEquals(4, curve.getControlY1(), 0.00001);
  45         assertEquals(5, curve.getControlX2(), 0.00001);
  46         assertEquals(6, curve.getControlY2(), 0.00001);
  47         assertEquals(7, curve.getEndX(), 0.00001);
  48         assertEquals(8, curve.getEndY(), 0.00001);
  49     }
  50 
  51     @Test