You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Stepan Mishura (JIRA)" <ji...@apache.org> on 2006/12/27 04:13:23 UTC

[jira] Assigned: (HARMONY-2882) [java][security]PKIXParameters.setDate(null) has no effect on the original date value on RI but Harmony sets it to null.

     [ http://issues.apache.org/jira/browse/HARMONY-2882?page=all ]

Stepan Mishura reassigned HARMONY-2882:
---------------------------------------

    Assignee: Stepan Mishura

> [java][security]PKIXParameters.setDate(null) has no effect on the original date value on RI but Harmony sets it to null.
> ------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2882
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2882
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Leo Li
>         Assigned To: Stepan Mishura
>         Attachments: patch-2882.diff
>
>
> Here is a testcase:
> public void testSetDate()
> {
>    Set taSet = TestUtils.getTrustAnchorSet();
>    PKIXParameters p = new PKIXParameters(taSet);
>    Date toBeSet = new Date(555L);
>    p.setDate(toBeSet);
>   p.setDate(null);
>   assertEquals(555L, p.getDate().getTime());
> }
> RI passes.
> Harmony fails.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira