Github user britter commented on a diff in the pull request:

    https://github.com/apache/commons-lang/pull/192#discussion_r80358050
  
    --- Diff: src/test/java/org/apache/commons/lang3/time/DateUtilsTest.java ---
    @@ -693,6 +693,43 @@ public void testToCalendar() {
                 // expected
             }
         }
    +    
    +    
//-----------------------------------------------------------------------
    +    @Test
    +    public void testToCalendarWithDate() {
    +        assertEquals("Convert Date and TimeZone to a Calendar, but failed 
to get the Date back", date1, DateUtils.toCalendar(date1, zone).getTime());
    +        try {
    +            DateUtils.toCalendar(null, zone);
    +            fail("Expected NullPointerException to be thrown");
    +        } catch(final NullPointerException npe) {
    +            // expected
    +        }
    +    }
    +    
    +    
//-----------------------------------------------------------------------
    +    @Test
    +    public void testToCalendarWithTimeZone() {
    +           assertEquals("Convert Date and TimeZone to a Calendar, but 
failed to get the TimeZone back", zone, DateUtils.toCalendar(date1, 
zone).getTimeZone());
    +        try {
    +            DateUtils.toCalendar(date1, null);
    +            fail("Expected NullPointerException to be thrown");
    +        } catch(final NullPointerException npe) {
    +            // expected
    +        }
    +    }
    +    
    +  //-----------------------------------------------------------------------
    +    @Test
    +    public void testToCalendarWithDateAndTimeZone() {
    +        try {
    +           Calendar c = DateUtils.toCalendar(date2, defaultZone);
    +           assertEquals("Convert Date and TimeZone to a Calendar, but 
failed to get the Date back", date2, c.getTime());
    +           assertEquals("Convert Date and TimeZone to a Calendar, but 
failed to get the TimeZone back", defaultZone, c.getTimeZone());
    --- End diff --
    
    This looks redundant to me, since `testToCalendarWithDate()` already tests 
that the date has been set and `testToCalendarWithTimeZone()` already tests, 
that the timeZone has been set.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to