Skip to content
This repository has been archived by the owner on Mar 20, 2018. It is now read-only.

Commit

Permalink
Rename test class for checking class loading
Browse files Browse the repository at this point in the history
git-svn-id: https://threeten.svn.sourceforge.net/svnroot/threeten/trunk/threeten@1487 291d795c-afe8-5c46-8ee5-bf9dd72e1864
  • Loading branch information
jodastephen committed Jun 4, 2011
1 parent 8c24009 commit fa1ce7f
Showing 1 changed file with 8 additions and 5 deletions.
Expand Up @@ -31,30 +31,33 @@
*/
package javax.time;

import javax.time.calendar.CalendricalRule;
import javax.time.calendar.LocalDate;
import javax.time.calendar.MonthOfYear;
import javax.time.calendar.ZoneId;
import javax.time.calendar.ZonedDateTime;

/**
* Test Class loading.
* Use "-verbose:class".
*
* @author Stephen Colebourne
*/
public class ClassLoader {
public class ClassLoaderTest {

public static void main(String[] args) {
System.out.println("************************************************************");
MonthOfYear.of(5);

System.out.println("************************************************************");
Object a = LocalDate.class;

// System.out.println("************************************************************");
// LocalDate.of(2011, 12, 20);

// System.out.println("************************************************************");
// new GregorianCalendar();

System.out.println("************************************************************");
ZonedDateTime.of(2011, 6, 5, 13, 30, 0, 0, ZoneId.of("Europe/Paris"));
// System.out.println("************************************************************");
// ZonedDateTime.of(2011, 6, 5, 13, 30, 0, 0, ZoneId.of("Europe/Paris"));

System.out.println("************************************************************");
}
Expand Down

0 comments on commit fa1ce7f

Please sign in to comment.