You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/11/30 08:51:23 UTC

[jira] Assigned: (HARMONY-2356) [classlib][luni]The Map from System.getEnv should throw NullPointerException while get(null) and is not modifiable.

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

Richard Liang reassigned HARMONY-2356:
--------------------------------------

    Assignee: Richard Liang

> [classlib][luni]The Map from System.getEnv should throw NullPointerException while get(null) and is not modifiable.
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2356
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2356
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Leo Li
>         Assigned To: Richard Liang
>         Attachments: patch-2356.diff, patch-2356.diff
>
>
> Here is the testcase:
>  public void testUnmodifiableMap()
>     {
>         Map map = System.getEnv();
>                 
>         try {
>             map.get(null);
>             fail("Should throw NullPointerExcepiton.");
>         } catch (NullPointerException e) {
>             //expected
>         }     
>                
>     }
> 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