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

[jira] Commented: (HARMONY-2760) [classlib][security]Provider.constructor throws NullPointerException while name or info is null while RI does not.

    [ http://issues.apache.org/jira/browse/HARMONY-2760?page=comments#action_12459236 ] 
            
Leo Li commented on HARMONY-2760:
---------------------------------

Verified. Thank you.

> [classlib][security]Provider.constructor throws NullPointerException while name or info is null while RI does not.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2760
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2760
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Leo Li
>         Assigned To: Paulex Yang
>         Attachments: patch-2760.diff
>
>
> class MyProvider extends Provider {               
>         MyProvider(String name, double version, String info) {
>             super(name, version, info);
>         }
> }
> public void testConstructor() {
> 	MyProvider myProvider = new MyProvider(null, 1, null);
> 	assertNull(myProvider.getName());
> 	assertNull(myProvider.getInfo());
> 	assertEquals("null", myProvider.getProperty("Provider.id name"));
> 	assertEquals("null", myProvider.getProperty("Provider.id info"));
> }
> 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