You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/01/24 15:30:50 UTC

[jira] Closed: (HARMONY-2445) [classlib][awt] java.awt.DefaultKeyboardFocusManager.dispatchEvent(null) does not throw NPE

     [ https://issues.apache.org/jira/browse/HARMONY-2445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov closed HARMONY-2445.
------------------------------------


verified by the patches' author

> [classlib][awt] java.awt.DefaultKeyboardFocusManager.dispatchEvent(null) does not throw NPE
> -------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2445
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2445
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: HARMONY-2445-DefaultKeyboardFocusManager.patch, HARMONY-2445-DefaultKeyboardFocusManagerTest.patch
>
>
> Test case:
> ----------------
> import java.awt.DefaultKeyboardFocusManager;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DefaultKeyboardFocusManager dkm = new DefaultKeyboardFocusManager();
>         try {
>             System.out.println(dkm.dispatchEvent(null));
>             fail("NPE expected");
>         } catch (NullPointerException e) {
>         } catch (Exception e) {
>             fail(e.getMessage());
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 1,983
> OK (1 test)
> harmony output:
> --------------
> .false
> F
> Time: 0.511
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NPE 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.
-
You can reply to this email to add a comment to the issue online.