< prev index next >

test/java/util/TimeZone/TimeZoneTest.java

Print this page




   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4028006 4044013 4096694 4107276 4107570 4112869 4130885 7039469 7126465 7158483
  27  *      8008577 8077685 8098547 8133321 8138716 8148446 8151876
  28  * @modules java.base/sun.util.resources
  29  * @library /java/text/testlib
  30  * @summary test TimeZone
  31  */
  32 
  33 import java.io.*;
  34 import java.text.*;
  35 import java.util.*;
  36 import sun.util.resources.LocaleData;
  37 
  38 public class TimeZoneTest extends IntlTest
  39 {
  40     static final int millisPerHour = 3600000;
  41 
  42     public static void main(String[] args) throws Exception {
  43         new TimeZoneTest().run(args);
  44     }
  45 
  46     /**
  47      * Bug 4130885




   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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4028006 4044013 4096694 4107276 4107570 4112869 4130885 7039469 7126465 7158483
  27  *      8008577 8077685 8098547 8133321 8138716 8148446 8151876 8159684
  28  * @modules java.base/sun.util.resources
  29  * @library /java/text/testlib
  30  * @summary test TimeZone
  31  */
  32 
  33 import java.io.*;
  34 import java.text.*;
  35 import java.util.*;
  36 import sun.util.resources.LocaleData;
  37 
  38 public class TimeZoneTest extends IntlTest
  39 {
  40     static final int millisPerHour = 3600000;
  41 
  42     public static void main(String[] args) throws Exception {
  43         new TimeZoneTest().run(args);
  44     }
  45 
  46     /**
  47      * Bug 4130885


< prev index next >