rt/emul/brwsrtest/src/test/java/org/apidesign/bck2brwsr/brwsrtest/TimeZoneTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 20 May 2016 06:02:44 +0200
changeset 1963 4b7ef2a05eb7
parent 1945 rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/tck/TimerTest.java@a139403de819
permissions -rw-r--r--
Trivial implementation of TimeZone.getDefault() - doesn't count with daylightsavings
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.brwsrtest;
    19 
    20 import java.util.TimeZone;
    21 import org.apidesign.bck2brwsr.vmtest.Compare;
    22 import org.apidesign.bck2brwsr.vmtest.VMTest;
    23 import org.testng.annotations.Factory;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class TimeZoneTest {
    30     boolean started;
    31     int miss;
    32     int exec;
    33     
    34     public TimeZoneTest() {
    35     }
    36     
    37     @Compare
    38     public int defaultTimeZoneRawOffset() throws Exception {
    39         TimeZone zone = TimeZone.getDefault();
    40         assert zone != null : "TimeZone.getDefault shouldn't be null";
    41         int offset = zone.getRawOffset();
    42         if (offset > 0) {
    43             return 1;
    44         } else if (offset < 0) {
    45             return -1;
    46         } else {
    47             return 0;
    48         }
    49     }
    50     
    51     @Factory public static Object[] create() {
    52         return VMTest.create(TimeZoneTest.class);
    53     }
    54     
    55 }