You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tony Wu (JIRA)" <ji...@apache.org> on 2006/12/14 11:37:24 UTC

[jira] Commented: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

    [ http://issues.apache.org/jira/browse/HARMONY-2495?page=comments#action_12458419 ] 
            
Tony Wu commented on HARMONY-2495:
----------------------------------

The testcase aforementioned passed on my machine with classlib r484851.

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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