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

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

[classlib][swing] javax.swing.JEditorPane.getEditorKitClassNameForContentType(null) does not throw unspecified NPE
------------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-2571
                 URL: http://issues.apache.org/jira/browse/HARMONY-2571
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Pavel Dolgov
            Priority: Minor


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: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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

Posted by "Alexey Petrenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Petrenko reassigned HARMONY-2571:
----------------------------------------

    Assignee: Alexey Petrenko

> [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
>         Assigned To: Alexey Petrenko
>            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.
-
You can reply to this email to add a comment to the issue online.


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

Posted by "Kalpak Gadre (JIRA)" <ji...@apache.org>.
     [ 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

        

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

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-2571:
-------------------------------------

    Patch Info: [Patch Available]

> [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.
-
You can reply to this email to add a comment to the issue online.


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

Posted by "Kalpak Gadre (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12465386 ] 

Kalpak Gadre commented on HARMONY-2571:
---------------------------------------

Proposed patch.

> [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

        

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

Posted by "Alexey Petrenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Petrenko resolved HARMONY-2571.
--------------------------------------

    Resolution: Fixed

The patch has been applied. The unit test has been added.
Please verify.

> [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
>         Assigned To: Alexey Petrenko
>            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.
-
You can reply to this email to add a comment to the issue online.