2
|
1 |
/*
|
|
2 |
* Copyright (c) 2007 Sun Microsystems, Inc. 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.
|
|
8 |
*
|
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
13 |
* accompanied this code).
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License version
|
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
18 |
*
|
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or
|
|
21 |
* have any questions.
|
|
22 |
*/
|
|
23 |
|
|
24 |
/*
|
|
25 |
*@test
|
|
26 |
*@bug 6271396
|
|
27 |
*@summary Test case for verifying typo of timezone display name Australia/Lord_Howe
|
|
28 |
*/
|
|
29 |
|
|
30 |
import java.util.Locale;
|
|
31 |
import java.util.TimeZone;
|
|
32 |
|
|
33 |
public class Bug6271396 {
|
|
34 |
|
|
35 |
public static void main(String[] args) {
|
|
36 |
|
|
37 |
TimeZone Lord_Howe = TimeZone.getTimeZone("Australia/Lord_Howe");
|
|
38 |
Locale tzLocale = new Locale("fr");
|
|
39 |
|
|
40 |
if (!Lord_Howe.getDisplayName(false, TimeZone.LONG, tzLocale).equals
|
|
41 |
("Heure standard de Lord Howe"))
|
|
42 |
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
|
|
43 |
"non-daylight saving name for " +
|
|
44 |
"Australia/Lord_Howe should be " +
|
|
45 |
"\"Heure standard de Lord Howe\"");
|
|
46 |
if (!Lord_Howe.getDisplayName(true, TimeZone.LONG, tzLocale).equals
|
|
47 |
("Heure d'\u00e9t\u00e9 de Lord Howe"))
|
|
48 |
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
|
|
49 |
"daylight saving name for " +
|
|
50 |
"Australia/Lord_Howe should be " +
|
|
51 |
"\"Heure d'\u00e9t\u00e9 de Lord Howe\"");
|
|
52 |
|
|
53 |
tzLocale = new Locale("zh", "TW");
|
|
54 |
if (!Lord_Howe.getDisplayName(false, TimeZone.LONG, tzLocale).equals
|
|
55 |
("\u8c6a\u52f3\u7235\u5cf6\u6a19\u6e96\u6642\u9593"))
|
|
56 |
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
|
|
57 |
"non-daylight saving name for " +
|
|
58 |
"Australia/Lord_Howe should be " +
|
|
59 |
"\"\u8c6a\u52f3\u7235\u5cf6" +
|
|
60 |
"\u6a19\u6e96\u6642\u9593\"");
|
|
61 |
if (!Lord_Howe.getDisplayName(true, TimeZone.LONG, tzLocale).equals
|
|
62 |
("\u8c6a\u52f3\u7235\u5cf6\u590f\u4ee4\u6642\u9593"))
|
|
63 |
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
|
|
64 |
"daylight saving name for " +
|
|
65 |
"Australia/Lord_Howe should be " +
|
|
66 |
"\"\u8c6a\u52f3\u7235\u5cf6" +
|
|
67 |
"\u590f\u4ee4\u6642\u9593\"");
|
|
68 |
}
|
|
69 |
}
|