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

[jira] Updated: (HARMONY-2428) [classlib][accessibility]javax.accessibility.AccessibleBundle.toDisplayString(Locale locale) does not throw unspecified NPE if locale==null

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

Paulex Yang updated HARMONY-2428:
---------------------------------

    Summary: [classlib][accessibility]javax.accessibility.AccessibleBundle.toDisplayString(Locale locale) does not throw unspecified NPE if locale==null  (was: javax.accessibility.AccessibleBundle.toDisplayString(Locale locale) does not throw unspecified NPE if locale==null)

> [classlib][accessibility]javax.accessibility.AccessibleBundle.toDisplayString(Locale locale) does not throw unspecified NPE if locale==null
> -------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2428
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2428
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Artem Aliev
>
> javax.accessibility.AccessibleBundle.toDisplayString(Locale locale) does not
> throw unspecified NPE if locale==null.
> RI throws NullPointerException.
> Test for reproducing:
> import javax.accessibility.*;
> public class test extends TestCase {      
>     public void test1 () {         
>        try {             
>            AccessibleRelation obj= new
> AccessibleRelation(AccessibleRelation.MEMBER_OF);
>            obj.toDisplayString(null);   
>            fail("NullPointerException should be thrown");      
>          } catch (NullPointerException e) {
>            //expected
>        } 
>     }       
> }
> Output on Sun 1.5
> =================
> Time: 0,015
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.094
> There was 1 failure:
> 1) test1(test)junit.framework.AssertionFailedError: NullPointerException should
> be thrown
>         at test.test1(test.java:9)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
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