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/02/12 11:35:05 UTC

[jira] Assigned: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

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

Alexei Zakharov reassigned HARMONY-2512:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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.