Searched refs:gCalend (Results 1 – 1 of 1) sorted by relevance
652 GregorianCalendar gCalend = new GregorianCalendar(); in test_clone() local654 gCalend.set(Calendar.MILLISECOND, 0); in test_clone()655 int dayOfMonth = gCalend.get(Calendar.DAY_OF_MONTH); in test_clone()658 GregorianCalendar gCalendClone = (GregorianCalendar) gCalend.clone(); in test_clone()661 assertEquals("Before", dayOfMonth, gCalend.get(Calendar.DAY_OF_MONTH)); in test_clone()662 gCalend.set(Calendar.MILLISECOND, 0);//changes nothing in test_clone()663 assertEquals("After", dayOfMonth, gCalend.get(Calendar.DAY_OF_MONTH)); in test_clone()