1 /*
 2  * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
 3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4  *
 5  * This code is free software; you can redistribute it and/or modify it
 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.text;
27 
28 import java.util.Arrays;
29 import java.util.Collection;
30 
31 import javafx.geometry.VPos;
32 import javafx.scene.text.Font;
33 import javafx.scene.text.FontSmoothingType;
34 import javafx.scene.text.FontWeight;
35 import javafx.scene.text.Text;
36 import javafx.scene.text.TextAlignment;
37 
38 import org.junit.runner.RunWith;
39 import org.junit.runners.Parameterized;
40 import org.junit.runners.Parameterized.Parameters;
41 
42 import test.com.sun.javafx.test.CssMethodsTestBase;
43 
44 @RunWith(Parameterized.class)
45 public class Text_cssMethods_Test extends CssMethodsTestBase {
46     private static final Text TEST_TEXT = new Text();
47 
48     @Parameters
49     public static Collection data() {
50         return Arrays.asList(new Object[] {
51             config(TEST_TEXT, "font", Font.getDefault(),
52                    "-fx-font", Font.font("Verdana", FontWeight.BOLD, 22)),
53             config(TEST_TEXT, "underline", false, "-fx-underline", true),
54             config(TEST_TEXT, "strikethrough", false,
55                    "-fx-strikethrough", true),
56             config(TEST_TEXT, "textAlignment", TextAlignment.LEFT,
57                    "-fx-text-alignment", TextAlignment.CENTER),
58             config(TEST_TEXT, "textOrigin", VPos.BASELINE,
59                    "-fx-text-origin", VPos.BOTTOM),
60             config(TEST_TEXT, "translateX", 0.0, "-fx-translate-x", 10.0),
61             config(TEST_TEXT, "fontSmoothingType", FontSmoothingType.LCD,
62                 "-fx-font-smoothing-type", FontSmoothingType.GRAY)
63         });
64     }
65 
66     public Text_cssMethods_Test(final Configuration configuration) {
67         super(configuration);
68     }
69 }