SimpleTimeZoneTest.java 304 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import java.util.*;

public class SimpleTimeZoneTest
{
  public static void main(String args[])
    {
      try {
	SimpleTimeZone gmt = new SimpleTimeZone(0, "GMT");
	System.out.println("PASSED: timezone="+gmt.toString());
      } catch (Exception e) {
	System.out.println("FAILED: "+e);
      }
    }
}