[ http://issues.apache.org/jira/browse/HARMONY-2495?page=all ]
Tony Wu updated HARMONY-2495:
-----------------------------
Attachment: harmony-2495.diff
patch and test.
would you please try it.
> [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
> Attachments: harmony-2495.diff
>
>
> 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
|