jdk/test/java/awt/font/NumericShaper/EqualsTest.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 4280 74c4e0c5d936
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4280
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4280
diff changeset
     2
 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
4280
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     4
 *
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     7
 * published by the Free Software Foundation.
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     8
 *
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    13
 * accompanied this code).
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    14
 *
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4280
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4280
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4280
diff changeset
    21
 * questions.
4280
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    22
 */
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    23
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    24
/*
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    25
 * @test
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    26
 * @bug 6842557
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    27
 * @summary confirm that an instance which is created with new Enum ranges is
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    28
 * equivalent to another instance which is created with equivalent traditional
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    29
 * ranges or the same Enum ranges.
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    30
 */
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    31
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    32
import java.awt.font.NumericShaper;
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    33
import java.util.EnumSet;
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    34
import static java.awt.font.NumericShaper.*;
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    35
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    36
public class EqualsTest {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    37
    public static void main(String[] args) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    38
        NumericShaper ns1 = getContextualShaper(ARABIC | TAMIL, TAMIL);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    39
        NumericShaper ns2 = getContextualShaper(
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    40
                                EnumSet.of(Range.ARABIC, Range.TAMIL),
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    41
                                Range.TAMIL);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    42
        NumericShaper ns3 = getContextualShaper(
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    43
                                EnumSet.of(Range.ARABIC, Range.TAMIL),
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    44
                                Range.TAMIL);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    45
        NumericShaper ns4 = getContextualShaper(
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    46
                                EnumSet.of(Range.ARABIC, Range.TAMIL),
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    47
                                Range.ARABIC);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    48
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    49
        if (!ns1.equals(ns2)) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    50
            throw new RuntimeException("ns1 != ns2: ns1=" + ns1 + ", ns2=" + ns2);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    51
        }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    52
        if (!ns2.equals(ns1)) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    53
            throw new RuntimeException("ns2 != ns1: ns1=" + ns1 + ", ns2=" + ns2);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    54
        }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    55
        if (!ns2.equals(ns3)) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    56
            throw new RuntimeException("ns2 != ns3: ns2=" + ns2 + ", ns3=" + ns3);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    57
        }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    58
        if (ns1.equals(ns4)) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    59
            throw new RuntimeException("ns1 == ns4: ns1=" + ns1 + ", ns4=" + ns4);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    60
        }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    61
        if (ns2.equals(ns4)) {
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    62
            throw new RuntimeException("ns2 == ns4: ns2=" + ns2 + ", ns4=" + ns4);
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    63
        }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    64
    }
74c4e0c5d936 6842557: NumericShaper needs to be updated for Unicode 5.1 support
peytoia
parents:
diff changeset
    65
}