You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Kalpak Gadre (JIRA)" <ji...@apache.org> on 2007/01/17 09:31:27 UTC

[jira] Updated: (HARMONY-2571) [classlib][swing] javax.swing.JEditorPane.getEditorKitClassNameForContentType(null) does not throw unspecified NPE

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

Kalpak Gadre updated HARMONY-2571:
----------------------------------

    Attachment: HARMONY-2571.patch.txt

> [classlib][swing] javax.swing.JEditorPane.getEditorKitClassNameForContentType(null) does not throw unspecified NPE
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2571
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2571
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: HARMONY-2571.patch.txt
>
>
> Test case:
> --------------
> import javax.swing.JEditorPane;
> 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 {
>             JEditorPane.getEditorKitClassNameForContentType(null);
>             fail("NPE expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> Harmony output:
> -------------------
> .F
> Time: 0.591
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NPE expected
> 	at TheTest.testcase1(TheTest.java:14)
> 	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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira